I have a data frame that has headers as this
Name 0x1 1x2
read.csv changes the header to be
Name X0x1 X1x2
according to @Joshua
read.csv("filename.csv",check.names=FALSE)