View source: R/filter_mutate_select_tidy.R
filter_faces | R Documentation |
Filters across all the dataframes in a faces object.
filter_faces(faces, ...)
faces |
The face object to filter. |
... |
The filtering condition. The function will delete all the rows in all the dataframes for which the condition is false. |
The function returns a filtered "faces" object
# Delete unsuccessful trials
filter_faces(test_faces, success == 1)
# Take only the first minute of each video analysed
test_faces %>%
filter_faces(timestamp < 60)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.