"R paste()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 8개는 보이지 않습니다)
4번째 줄: 4번째 줄:
;R paste()
;R paste()
* 여러 문자열을 하나로 합치는 R 함수
* 여러 문자열을 하나로 합치는 R 함수
* 각 문자열 사이에 공백이 추가된다. (sep=" ")
* sep="" 옵션으로 사이공백을 없앨 수 있다.


<source lang='r'>
<syntaxhighlight lang='r' run>
options(echo=TRUE)
paste("hello", "world", "lorem", "ipsum")
paste("hello", "world", "lorem", "ipsum")
</syntaxhighlight>
<syntaxhighlight lang='r' run>
paste("hello", "world", "lorem", "ipsum", sep="")
</syntaxhighlight>
<syntaxhighlight lang='r' run>
paste(1:12)
paste(1:12)
</source>
</syntaxhighlight>
<source lang='r'>
<syntaxhighlight lang='r' run>
options(echo=TRUE)
options(echo=TRUE)
paste("A", "B", "C", "D", sep = " - ")
paste("A", "B", "C", "D", sep = " - ")
paste("A", "B", "C", "D", collapse = " - ")
paste("A", "B", "C", "D", collapse = " - ")
paste(c("A", "B", "C", "D"), collapse = " - ")
paste(c("A", "B", "C", "D"), collapse = " - ")
</source>
</syntaxhighlight>
<source lang='r'>
<syntaxhighlight lang='r' notebook>
options(echo=TRUE)
options(echo=TRUE)
nth <- c("1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th")
nth <- c("1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th")
nth
nth
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
myletter <- toupper(letters[1:4])
myletter <- toupper(letters[1:4])
myletter
myletter
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
paste(myletter, "is the", nth, "letter.")
paste(myletter, "is the", nth, "letter.")
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
paste(myletter, "is the", nth, "letter.", sep ="__")
paste(myletter, "is the", nth, "letter.", sep ="__")
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[R paste0()]]
* [[R paste0()]]
* [[R toString()]]
* [[R toString()]]
36번째 줄: 49번째 줄:
* [[함수 concat()]]
* [[함수 concat()]]
* [[함수 implode()]]
* [[함수 implode()]]
}}


==참고==
==참고==

2021년 4월 6일 (화) 20:15 기준 최신판

  다른 뜻에 대해서는 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 }}