R c()

1 개요[ | ]

R c()
c(1)
c(1,2,3)
c(1:3)
1:3
x <- c("hello")
x
class(x)
str(x)
options(echo = TRUE)
y <- c("hello","world")
y
class(y)
str(y)

2 벡터 합치기[ | ]

c(c(1,2,3),c(4,5))
c(c(1,2,3),c("hello","world"))

3 같이 보기[ | ]

4 참고[ | ]

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