KnowledgeBoat Logo
|

Informatics Practices

Name some functions that perform descriptive statistics on a DataFrame.

Python Pandas

2 Likes

Answer

Some 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