Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

delete first three lines 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"
 
PREVIOUS NEXT
Tagged: #delete #lines #dataframe #R
ADD COMMENT
Topic
Name
5+8 =