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

2번째 줄: 2번째 줄:
;R select()
;R select()
* "Select/rename variables by name"
* "Select/rename variables by name"
<source lang='r' run>
select(iris, starts_with("Petal"))
select(iris, ends_with("Width"))
</source>
<source lang='r' run>
tb <- as_tibble(iris)
select(tb, starts_with("Petal"))
select(tb, ends_with("Width"))
</source>


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

2020년 4월 16일 (목) 00:38 판

1 개요

R select()
  • "Select/rename variables by name"
select(iris, starts_with("Petal"))
select(iris, ends_with("Width"))
tb <- as_tibble(iris)
select(tb, starts_with("Petal"))
select(tb, ends_with("Width"))

2 같이 보기

3 참고

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