R paste()

  다른 뜻에 대해서는 paste 문서를 참조하십시오.
  다른 뜻에 대해서는 리눅스 paste 문서를 참조하십시오.

1 개요[ | ]

R paste()
  • 여러 문자열을 하나로 합치는 R 함수
  • 각 문자열 사이에 공백이 추가된다. (sep=" ")
  • sep="" 옵션으로 사이공백을 없앨 수 있다.
paste("hello", "world", "lorem", "ipsum")
paste("hello", "world", "lorem", "ipsum", sep="")
paste(1:12)
options(echo=TRUE)
paste("A", "B", "C", "D", sep = " - ")
paste("A", "B", "C", "D", collapse = " - ")
paste(c("A", "B", "C", "D"), collapse = " - ")
options(echo=TRUE)
nth <- c("1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th")
nth
myletter <- toupper(letters[1:4])
myletter
paste(myletter, "is the", nth, "letter.")
paste(myletter, "is the", nth, "letter.", sep ="__")

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}