Im trying to generate an xtable of a .csv file within a knitr document. The csv file contains cells which have several math symbols such as '±'.I do not know how to tell xtable to include that math symbol within the knitr document.
Thus far i have been trying the following
table<-read.csv("table.csv",check.names = FALSE)
q<-xtable(table,
caption = "This is my table",include.rownames=FALSE,label="tab:table")
print(q,include.rownames=FALSE)
This doesn't work and gives me the following error "missing $ inserted"
Thank you in advance