The names() function of R can be used to remove the header/column names from a data frame.
Here is an example:
> df <- data.frame("A"= 1:5, "B"=11:15, "C"=21:25, "D"=31:35)> df A B C D1 1 11 21 312 2 12 22 323 3 13 23 334 4 14 24 345 5 15 25 35> names(df) <- NULL> df 1 1 11 21 312 2 12 22 323 3 13 23 334 4 14 24 345 5 15 25 35