Supprimer les trois premières lignes Dataframe R

df = df[-1,] #Remove first line of a dataframe

remove <- 1:n
df = df[-remove,] #Remove the first n lines of a dataframe

#Always check if your object is a dataframe with class(df) e.g:
> class(df)
[1] "data.frame"
Big Feeeeeb