R select()

Jmnote (토론 | 기여)님의 2020년 4월 16일 (목) 00:40 판 (→‎개요)

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 참고

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