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

13번째 줄: 13번째 줄:
select(tb, starts_with("Petal"))
select(tb, starts_with("Petal"))
</source>
</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:41 판

1 개요

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

2 함께 쓰면 유용한 함수들

3 같이 보기

4 참고

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