希望有人可以帮助我使用 xtable 包将导入的 .csv 文件导出到 *.html 文件中。
以下是我到目前为止所写的内容,但是当我检查我的文件夹时,该文件不存在。任何见解或建议将不胜感激。
这是导入我的 csv 数据文件然后导出为 *.html 文件的操作:
Data=file.path("C:\\Users\\aacha\\OneDrive\\School\\Active Courses\\BIT-430 Intro to Business Analytics\\Week 5-Intro to a Statistical Language\\Topic 5 Data\\Data.csv")
Sales=read.csv(Data, header = TRUE, sep = ',')
View(Sales)
install.packages("xtable")
library("xtable")
下面是我尝试创建 *.html 文件
Sales.xtable=xtable(Sales)
xtable(Sales)
print(xtable(Sales.xtable,type = "html"), file = "C:\\Users\\aacha\\OneDrive\\School\\Active Courses\\BIT-430 Intro to Business Analytics\\Week 5-Intro to a Statistical Language\\Sales.txt"