I want to delete the header from a dataframe that I have. I read in the data from a csv file then I transposed it, but it created a new header that is the name of the file a
Set names to NULL
names(df) <- NULL
You can also use the header option in read.csv
header
read.csv