I want to know how can I round all the values from my table to integer values. The code I am using to import the csv file as a tabular in the document is the following:
\csvautotabular[respect underscore = true]{files/Results_RandCA_Library_Multi_SelectedPI.csv}
data.frameobject as here, you can round the whole data frame (i.e,table <- round(table,0)) before exporting to latex with xtable, or just round the latex export with optiondigits(i.e.xtable(table, digits=0, ....)) – Fran Apr 09 '23 at 08:17