20

我已经查看了Print list without line numbers in RPrevent 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

这可能吗?

4

1 回答 1

31
> foo = "10 & 1.832171"       
> cat(foo)
10 & 1.832171
于 2013-11-13T00:53:36.353 回答