boxoffice
From boxoffice v1.2.2
by Jacob Kaplan
Download Information on Box Office Results for Movies
Download Information on Box Office Results for Movies
Usage
boxoffice(dates, site = c("mojo", "numbers"), top_n = NULL)
Arguments
- dates
A vector of dates to scrape
- site
Whether you want to get data from boxofficemojo.com or the-numbers.com. Accepts inputs of "numbers" (default) or "mojo".
- top_n
The number of results to return for each day. If NULL (default) returns all results, otherwise just top n results (e.g. top_n = 5, returns 5 top movies per date).
Value
Data frame returning info on the name of the movie, its daily gross, gross-to-date, and gross-per-theater for each date inputted.
Examples
# NOT RUN {
# Uses the-numbers.com website.
boxoffice(dates = as.Date("2017-12-25"))
# Uses boxofficemojo.com website.
boxoffice(dates = as.Date("2017-12-25"), site = "mojo")
# Returns only top 10 (daily) grossing movies
boxoffice(dates = as.Date("2017-12-25"), top_n = 10)
# Uses the dates of Christmas and New Years Eve 2017
boxoffice(dates = as.Date(c("2017-12-25", "2017-12-31")))
# }
Community examples
Looks like there are no examples yet.