Description Usage Arguments Value Examples
Filter Movie Results
1 2 | filter_movies(mov_info = get_mov_info_de(), details = NULL,
quoted = FALSE)
|
mov_info |
dataframe of movie information |
details |
which details to retreive |
quoted |
whether the details parameter should be quoted |
filtered movies
1 2 3 4 5 | filter_movies(mov_info = get_mov_info_de()) # returns all details
filter_movies(mov_info = get_mov_info_en(), details = c("title", "runtime", "plot")) # returns selected columns
filter_movies(details = expr(starts_with("poster")), quoted = TRUE) ##TODO: check expr/quo/enquo
filter_movies(details = c("Who am I?", "Who are you?")) # error
filter_movies(mov_info = get_mov_info_en(), details = c("title", "runtime", ":P", ":D")) # warning; returns matchess
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.