Informatics Practices
What is descriptive statistics ? Name Pandas descriptive statistics functions.
Python Pandas
2 Likes
Answer
A descriptive statistic is a summary statistic that quantitatively describes or summarizes features of a collection of information.
The functions that perform descriptive statistics on a DataFrame are min(), max(), idxmax(), idxmin(), mode(), mean(), median(), count(), sum(), quantile(), std(), var().
Answered By
3 Likes
Related Questions
How do you iterate over a DataFrame?
What are binary operations ? Name the functions that let you perform binary operations on a DataFrame.
The info() and describe() are said to be inspection functions. What do they do ?
What is the difference between sum and cumulative sum? How do you perform the two on DataFrame ?