I am confused about the paste()
function in R.
This is my r code:
paste(cols=list("speed###","dist"), rows=list("speed"))
The ideal output should be:
cols=list("speed###","dist"), rows=list("speed")
But the actual output was:
"speed### speed" "dist speed"
Can anyone help me to figure out and get the ideal output?
I will appreciate any reply here!
Thank you!
Best regards!