I have a data frame that I am outputting to MS Word. Lets say I'm trying to output the data frame mtcars, then using the R2wd package, I get:
#install.packages("R2wd")
require(R2wd)
wdGet()
wdTable(mtcars)
'>ncol(mtcars)
11
however a count shows that there are actually 12 columns. R doesn't include the model of car.
I have a dataframe that's outputting the numeric sequence of a dataframe and I really need that suppressed. In the report I'm outputting to it's useless information. So I basically need to suppress the model column of mtcars.
Also, how is it that they can get the car names to be the "hidden" column?