Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
457 views
in Technique[技术] by (71.8m points)

concatenation - Paste/Collapse in R

I'm confused by paste, and thought it was just simple concatenating.

whales <- c("C","D","C","D","D")

quails <- c("D","D","D","D","D")

results <-paste(whales, quails, collapse = '')

Why would this return "C DD DC DD DD D" instead of CD DD CD DD DD?

Moreover, why would

results <-paste(whales[1], quails[1], collapse = '')

return

"C D" ?

with a space?

Thanks, D

EDIT

OK, I see that

results <-paste(whales, quails, collapse = NULL, sep='')

will get me what I want, but an explanation of why the previous code didn't work? And also thank you to the answerers.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

For those who like visuals, here is my take at explaining how paste works in R:

enter image description here

sep creates element-wise sandwich stuffed with the value in the sep argument:

enter image description here

collapse creates ONE big sandwich with the value of collapse argument added between the sandwiches produced by using the sep argument:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...