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

25번째 줄: 25번째 줄:
* https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/setNames
* https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/setNames


[[분류: R]]
[[분류: R stats]]

2020년 10월 25일 (일) 18:18 판

1 개요

R setNames()
  • "Set the Names in an Object → 객체 내에 이름 설정"
setNames( 1:3, c("foo", "bar", "baz") )
# this is just a short form of
tmp <- 1:3
names(tmp) <-  c("foo", "bar", "baz")
tmp
## special case of character vector, using default
setNames(nm = c("First", "2nd"))

2 같이 보기

3 참고

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