Also maybe auto-exclude non-numerical columns by default like groupby agg?
http://stackoverflow.com/questions/13003051/how-do-i-exclude-a-few-columns-from-a-dataframe-plot
Comment From: ispmarin
It would be great to have a way to slice the df and get only a few columns for plotting, for example.
Something like
df[:,'2010':'2015']
on a data frame with years as columns, ranging from 2008 to 2015.
Comment From: jorisvandenbossche
@ispmarin does df.loc[:,'2010':'2015'].plot()
do what you want?