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

1 Like


Related Questions