Remove a row from a data table in R

You can do this via

dataframename = dataframename[-1,]

Leave a Comment