como exportar resultados do console do Rstudo para exel ou word.
library(openxlsx) DF <- data.frame(Name=c("A","S","D","G"),Value=1:4) wb <- createWorkbook() addWorksheet(wb,"NombreDeHoja") writeData(wb,"NombreDeHoja",x=DF) saveWorkbook(wb,file="Filename.xlsx")
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.