R 리스트

1 개요[ | ]

R List
R 리스트
  • 여러가지 형식의 객체를 포함할 수 있다.
  • 각 요소의 길이는 서로 다를 수 있다.
lst <- list()
class(lst)
## [1] "list"
str(lst)
##  list()
lst <- list()
lst["2013-11"] <- "hello"
lst["2013-12"] <- "world" 
lst["2014-01"] <- "lorem"
lst
## $`2013-11`
## [1] "hello"
## 
## $`2013-12`
## [1] "world"
## 
## $`2014-01`
## [1] "lorem"
lst <- list()
lst[["2013-11"]] <- "hello"
lst[["2013-12"]] <- "world" 
lst[["2014-01"]] <- "lorem"
lst
## $`2013-11`
## [1] "hello"
## 
## $`2013-12`
## [1] "world"
## 
## $`2014-01`
## [1] "lorem"

2 같이 보기[ | ]

3 참고[ | ]

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