I need to delete the first three rows of a dataframe in pandas.
I know df.ix[:-1] would remove the last row, but I can\'t figure out how to remove first
df.ix[:-1]
df = df.iloc[n:]
n drops the first n rows.