use*_*767 0 indexing r character
我想在r,whiteout行号中打印一个字符!我怎么做 :
print("character ",quote = FALSE , row.names = F)
[1] character
Run Code Online (Sandbox Code Playgroud)
在row.names = F没有做任何事情!我想拥有 :
print("character ",quote = FALSE, something to remove the line index)
character
Run Code Online (Sandbox Code Playgroud)
只需使用cat:
cat("character")
Run Code Online (Sandbox Code Playgroud)
输出:
character
Run Code Online (Sandbox Code Playgroud)