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 n rows.
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 n rows.