April 7, 2020

DATA CLEANING WITH PANDAS

Some functions to diagnose data for tidyness:

  1. .head( ) - display the first 5 rows

  2. .info( ) - display a summary of the table

  3. .describe( ) - display the summary statistics

  4. .columns - display the column names

  5. .value_counts( ) - display the distinct values for a column

Previous
Previous

April 8, 2020

Next
Next

April 1, 2020