I want to print a character in r, whiteout line number ! How do I do that :
print("character ",quote = FALSE , row.names = F)
[1] character
The row.names = F does not do anything !
I would like to have :
print("character ",quote = FALSE, something to remove the line index)
character
Simply use cat:
cat("character")
Output:
character
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With