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