Which Python code snippet correctly displays the summary statistics of a table?
Real Exam
Explanation:
The correct answer is df.describe(), which is used to view the summary statistics of a DataFrame in Python. This method provides a quick overview of the central tendencies and dispersion of the dataset.