How to convert pandas Dataframes to NumPy array
df.to_numpy()
Or df.values
How to convert pandas Dataframes to dictionaries?
df.to_dict();
How to summarize statistics?
df.describe()
How to eliminate scientific notation and set decimal points
df.describe().round(2)
What function will also describe, provide the count,unique,top, and frequency for non-numeric columns
df.describe(include = ‘all’).round(4)
What is Groupby?
Groupby allows you to efficiently compute aggregate on subsets of data