Description Usage Arguments Value Examples
Basic filter functions
1 2 3 4 5 6 7 8 9 | filter_price_min(df, price_min = 500)
filter_grade_min(df, grade_min = 75, keep_new = TRUE)
filter_line(df)
filter_no_tag(df)
filter_words(df, words)
|
df |
Formatted data frame. |
price_min |
Minimum price. |
grade_min |
Minimum grade. |
keep_new |
Logical. Should host without grade should be kept? |
words |
Words to find in notice column. |
A filtered dataframe.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
turnips %>%
filter_price_min(price_min = 400) %>%
filter_grade_min(grade_min = 90, keep_new = TRUE) %>%
filter_line() %>%
df_events %>%
filter_words(words = c("gold", "celeste")) %>%
filter_no_tag()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.