distribution, what kind of plot?
histogram
rename columns?
dfrename=df.renam(columns={‘OGColumn’= ‘newcolumn’})
order columns
df.columns=[‘columnsname’, ‘column’]
but you have to list all of them
find total # of rows under a column?
df[‘column’].nunique()
what kind of plot to show correlation?
scatter plot
when to use list?
if you have a collection of values where order matters
when to use a dictionary?
if you need a sort of lookup table where specified information needs to grabbed fast by using keys