filter_screenings: Filter Available Screenings

Description Usage Arguments Value Examples

Description

Filter Available Screenings

Usage

1
2
filter_screenings(screenings_details = get_screenings(),
  sel_dates = NULL, sel_release_types = NULL, sel_sites = NULL)

Arguments

screenings_details

a data frame with screening details; output from 'get_screenings()'

sel_dates

selected date(s) in "YYYY-MM-DD" format as a vector of strings

sel_release_types

selected release type(s) as a vector of strings

sel_sites

selected site(s) as a vector of strings

Value

a tibble of movie titles (in German) and screening details

Examples

1
2
3
4
5
filter_screenings(my_screenings_details)  # returns all screenings in my_screenings_details
filter_screenings(sel_dates = Sys.Date())  # returns all screenings found playing today
filter_screenings(sel_sites = c("Cineplex", "Schloßtheater"))  # returns all screenings found playing in Cineplex or Schloßtheater branches
filter_screenings(sel_release_types = "2D OmU")  # returns all screenings found playing in 2D OmU
filter_screenings(sel_sites = "just making stuff up now")  # "no results were found"

sowla/kino documentation built on May 21, 2019, 4:06 a.m.