Home → Data → EDA
Reading
0%

1 · The Goal of EDA

📖
Textbook Definition

"Exploratory Data Analysis is not a formal process with a strict set of rules. More than anything, EDA is a state of mind. You should use it to investigate the quality of your data." — Wes McKinney

2 · Return Value: .describe()

🔁 Return Value

The df.describe() method returns a DataFrame where indexes are the statistics (count, mean, std, etc.) and columns are the numeric features of the original data.

📚 See Also