Subset Data Frame Rows in R
转载: Subset Data Frame Rows in R - Datanovia
# Subset Data Frame Rows in R
This tutorial describes how to subset or extract data frame rows based on certain criteria.
In this tutorial, you will learn the following R functions from the dplyr package:
slice(): Extract rows by position
filter():...
more...