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

(새 문서: ==개요== ;R select() * "Select/rename variables by name" ==같이 보기== * R arrange() * R filter() * R mutate() * R slice() * R summarise() * R rename()...)
 
 
(같은 사용자의 중간 판 9개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;R select()
;R select()
* "Select/rename variables by name"
* "Select variables by name"
* 이름으로 변수들을 선택하는 R 함수
 
<source lang='r' run>
library(dplyr, warn.conflicts=FALSE)
select(iris, starts_with("Sepal"))
</source>
<source lang='r' run>
library(dplyr, warn.conflicts=FALSE)
tb <- as_tibble(iris)
select(tb, starts_with("Sepal"))
</source>
<source lang='r' run>
library(dplyr, warn.conflicts=FALSE)
tb <- as_tibble(iris)
select(tb, -starts_with("Sepal"))
</source>
 
==함께 쓰면 유용한 함수들==
{{z컬럼3|
* [[R starts_with()]]
* [[R ends_with()]]
* [[R contains()]]
* [[R matches()]]
* [[R num_range()]]
* [[R one_of()]]
* [[R everything()]]
}}


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[R arrange()]]
* [[R arrange()]]
* [[R filter()]]
* [[R filter()]]
11번째 줄: 39번째 줄:
* [[R rename()]]
* [[R rename()]]
* [[R dplyr]]
* [[R dplyr]]
}}


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

2020년 4월 16일 (목) 00:42 기준 최신판

1 개요[ | ]

R select()
  • "Select variables by name"
  • 이름으로 변수들을 선택하는 R 함수
library(dplyr, warn.conflicts=FALSE)
select(iris, starts_with("Sepal"))
library(dplyr, warn.conflicts=FALSE)
tb <- as_tibble(iris)
select(tb, starts_with("Sepal"))
library(dplyr, warn.conflicts=FALSE)
tb <- as_tibble(iris)
select(tb, -starts_with("Sepal"))

2 함께 쓰면 유용한 함수들[ | ]

3 같이 보기[ | ]

4 참고[ | ]

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