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

 
(같은 사용자의 중간 판 5개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;R select()
;R select()
* "Select/rename variables by name"
* "Select variables by name"
* 이름으로 변수들을 선택하는 R 함수


<source lang='r' run>
<source lang='r' run>
library(dplyr, warn.conflicts=TRUE)
library(dplyr, warn.conflicts=FALSE)
select(iris, starts_with("Petal"))
select(iris, starts_with("Sepal"))
select(iris, ends_with("Width"))
</source>
</source>
<source lang='r' run>
<source lang='r' run>
library(dplyr, warn.conflicts=TRUE)
library(dplyr, warn.conflicts=FALSE)
tb <- as_tibble(iris)
tb <- as_tibble(iris)
select(tb, starts_with("Petal"))
select(tb, starts_with("Sepal"))
select(tb, ends_with("Width"))
</source>
</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()]]
}}


==같이 보기==
==같이 보기==

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 }}