KnowledgeBoat Logo
|

Informatics Practices

The info() and describe() list the same information about a DataFrame.

Python Pandas

3 Likes

Answer

False

Reason — The info() method in pandas provides basic information about a DataFrame, including the data types of each column, the number of rows, and the memory usage. It also displays the index name and type. On the other hand, the describe() method provides detailed descriptive statistics about the numerical columns in a DataFrame, including count, mean, standard deviation, minimum value, 25th percentile, median (50th percentile), 75th percentile, and maximum value.

Answered By

1 Like


Related Questions