I have installed the package to insert the XSL file in R studio using the following code:
“install. packages(“readxl”),
then I library it by code :
“library(readxl)”
finally, I installed the XSL file by the code:
“XLSLFile= read_xlsx(“E:/R programming/data/Table_3 (1).xlsx”)
now I can not find the function to save this file by the code
“write.xlsx (XLSLFile, file path),
the question is ; how can i get the true function if the R programming give me an error code
install. packages(“readxl”)
library(readxl)”
XLSLFile= read_xlsx(“E:/R programming/data/Table_3 (1).xlsx”)
write.xlsx (XLSLFile, “E:/R programming/data/FirstXSLXFilesave”)
Aliaa Nasr is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.