R filter()

1 개요[ | ]

R filter()
  • "Return Rows With Matching Conditions"
  • 조건에 맞는 행들을 반환하는 R 함수
library(dplyr, warn.conflicts = FALSE)
filter(starwars, species == "Human")
library(dplyr, warn.conflicts = FALSE)
filter(starwars, species == "Human" & gender == "female")

2 같이 보기[ | ]

3 참고[ | ]

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