使用代码将 data.frame 导出为 .csv。
write.csv(df, "name.csv")
LogitTV.Rda 有 3000 行和 4 列。
我的代码在识别 data.frame 时出错。
load("~/Home Automation/LogitTV.Rda")
write.csv(LogitTV.Rda, "LogitTV.csv")
is.data.frame(x) 中的错误:找不到对象“LogitTV.Rda”
检查了以下内容:
1)清理了以前历史的控制台
2) 工作目录设置为 ~/Home Automation/
还有什么要检查以防止错误的吗?
谢谢