KnowledgeBoat Logo
|

Informatics Practices

Which function calculates descriptive statistical details for a DataFrame ?

  1. info()
  2. describe()
  3. show()
  4. 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