This is a memo.
Description | |
---|---|
count | The number of data |
unique | Number of unique (unique) values |
top | Mode with the highest frequency of occurrence (mode) |
freq | The number of occurrences of the mode |
mean | Average value |
std | standard deviation |
min | minimum value |
25% | 1/Quartile |
50% | Median |
75% | 3/Quartile |
max | Maximum value |
To output the above value
test.py
Variable that stores DataFrame type data.describe(include='all')
Recommended Posts