writexl Questions
1
Solved
I have a large dataframe in R that I want to export to Excel. To make the understanding easier; I will use the mtcars dataset as an example.
The dataframe has a grouping variable (cyl) and I would ...
7
Solved
I'm using the write_xlsx command to export data from R to excel,
Here is the data frame that I have,
>df
X1
A 76
B 78
C 10
Using ,
write_xlsx(df, "../mydata.xlsx")
gives the followin...
2
Solved
wight now I'having an issue with R. I could not use library openxlsx in my PC. When I try to import, these errors show me that:
Error: package or namespace load failed for ‘openxlsx’:
object ‘zip...
1
I have a 26 mb excel workbook to which I am trying to add a 42 kb worksheet. Using the openxlsx package, I have the following code:
wb_object <- loadWorkbook(to_name2)
addWorksheet(wb_object, "...
1
© 2022 - 2024 — McMap. All rights reserved.