我已经查看了Print list without line numbers in R和Prevent print() from output list indices in R的答案,但似乎都没有阻止 R 打印带有左侧索引的字符串。
输入:
foo = "10 & 1.832171"
print(foo, row.names=F, quote=F)
输出:
[1] 10 & 1.832171
期望的输出:
10 & 1.832171
这可能吗?
我已经查看了Print list without line numbers in R和Prevent print() from output list indices in R的答案,但似乎都没有阻止 R 打印带有左侧索引的字符串。
输入:
foo = "10 & 1.832171"
print(foo, row.names=F, quote=F)
输出:
[1] 10 & 1.832171
期望的输出:
10 & 1.832171
这可能吗?