SciPy.jl logo
SciPy.jl
  • Home
  • Tips
  • Examples
    • cluster
    • constants
    • fft
    • interpolate
    • io
    • linalg
    • ndimage
    • odr
    • optimize
    • signal
    • sparse
    • spatial
    • special
    • stats
      • describe
  • API References
Version
  • Examples
  • stats
  • stats
Edit on GitHub

scipy.stats

scipy.stats module

  • Statistical functions (scipy.stats) Reference Guide

describe

  • scipy.stats.describe Reference Guide
a = collect(0:10)
println(stats.describe(a))

b = [1 2; 3 4]
println(stats.describe(b))
(nobs = 11, minmax = (0, 10), mean = 5.0, variance = 11.0, skewness = 0.0, kurtosis = -1.22)
(nobs = 2, minmax = ([1, 2], [3, 4]), mean = [2.0, 3.0], variance = [2.0, 2.0], skewness = [0.0, 0.0], kurtosis = [-2.0, -2.0])
« specialAPI References »

Powered by Documenter.jl and the Julia Programming Language.

Settings


This document was generated with Documenter.jl version 0.27.23 on Sunday 4 December 2022. Using Julia version 1.8.3.