Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 R 2.14.1,我有时会输出 xls 文件。但是,最近,我注意到-在要输出的数据对象中被转换成一些类似于+AC0实际 xls 文件中的代码。这在读回 R 时仍然存在。类似地,下划线被转换为.A+.或类似的东西。
-
+AC0
.A+.
示例代码: write.table(obj1, file="ex1.xls", sep="\t", row.names=F, na="")
write.table(obj1, file="ex1.xls", sep="\t", row.names=F, na="")
我不记得在以前的 R 版本中发生过这种情况。
关于解决方案的任何想法?