在R中打印没有索引的字符串

时间:2013-11-13 00:48:03

标签: r

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

这有可能吗?

1 个答案:

答案 0 :(得分:22)

> foo = "10 & 1.832171"       
> cat(foo)
10 & 1.832171