Path: blob/master/notebook-for-reviewing/chapter_6_descriptive_statistics.ipynb
388 views
Kernel: Python 3
In [34]:
Chapter 6 Descriptive Statistics
Data Presentation
Show the data
In [6]:
Out[6]:
Service Times
0 45
1 62
2 52
3 72
4 91
.. ...
195 105
196 62
197 72
198 66
199 79
[200 rows x 1 columns]
Data graphs
Include:
Histograms
Leaf Plots
Box Plots
In [8]:
Out[8]:
In [11]:
Out[11]:
In [13]:
Out[13]:
Sample Statistics
Mean
Variance
Median
Trimmed Mean
Mode
Quantile
Coefficient
In [39]:
Out[39]:
----- Mean -----
Service Times 69.345
dtype: float64
----- Varn -----
[309.31253769]
----- Medi -----
66.0
----- Trim -----
[67.88333333]
----- Mode -----
ModeResult(mode=array([[61]]), count=array([[13]]))
----- Up-Q -----
[76.]
----- Lo-Q -----
[61.]
----- Inte -----
[15.]
----- Coef -----
[0.25298522]