Informatics Practices
Which function calculates descriptive statistical details for a DataFrame ?
- info()
- describe()
- show()
- list()
Python Pandas
1 Like
Answer
describe()
Reason — The descriptive statistics details can be calculated through a single function, namely the describe() function.
Answered By
1 Like
Related Questions
To divide total distribution of given data in eight equal parts, …………… function is used.
- median()
- quartile()
- quantile()
- all of these
Which of the following is not a descriptive statistics function ?
- count()
- add()
- sum()
- max()
To calculative cumulative sum of a column of a DataFrame, you may use …………… function.
- sum()
- sum(cumulative = True)
- cumsum()
- none of these
The function to get the index of maximum value in a column of DataFrame is …………… .
- max()
- index()
- idxmax()
- maxidx()