Box And Whisker Plots
Avoid the annoying ...
...pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)Print table to terminal
print(df.head())Read CSV
df.read_csv("file.csv")Export to CSV
df.to_csv("file.csv")Print a summary of the data
df.describe()Show Columns
df.columnsDrop all missing values
Get dimensions of table
Get number of instances per class
Univariate Plotting
Last updated
Was this helpful?