data_describe.metrics.univariate¶
| 
 | Calculates the “spikey-ness” of the histogram. | 
| 
 | Calculates skew. | 
- 
data_describe.metrics.univariate.spikey(data)¶
- Calculates the “spikey-ness” of the histogram. - Spikeyness is the ratio between the tallest bin and the average bin height. - Parameters
- data – The 1-d data array 
- Returns
- Ratio of the tallest bin height and the average bin height. 
 
- 
data_describe.metrics.univariate.skewed(data)¶
- Calculates skew. - Utilizes scipy.stats. - Parameters
- data – The 1-d data array 
- Returns
- The data skew.