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

 
(같은 사용자의 중간 판 4개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;R setNames()
;R setNames()
* "Set the Names in an Object {{해석|객체 내에 이름 설정}}"
* 객체 내에 이름 설정하는 R 함수


<syntaxhighlight lang='r' run>
<syntaxhighlight lang='r' run>
18번째 줄: 18번째 줄:


==같이 보기==
==같이 보기==
* [[R unname()]]
* [[R names()]]
* [[R unname()]] - 이름 제거


==참고==
==참고==
* https://stat.ethz.ch/R-manual/R-devel/library/stats/html/setNames.html
* https://stat.ethz.ch/R-manual/R-devel/library/stats/html/setNames.html
* https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/setNames


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

2020년 10월 25일 (일) 18:18 기준 최신판

1 개요[ | ]

R setNames()
  • 객체 내에 이름 설정하는 R 함수
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 }}