This data contains box office data for the Barbie movie, from its first 50 days (July 21, 2023 to September 8, 2023).
Usage
data("barbie_box_office")
Format
a tibble
with 50 rows and 11 columns
date
date. Box office date.
dow
factor. Day of the week.
rank
integer. Box office rank.
daily
integer. Daily gross in USD.
percent_yd
numeric. Gross change per day as a percent.
percent_lw
numeric. Gross change per week as a percent.
theaters
integer. Number of theatres.
avg_per_theater
integer. Per theater average gross.
to_date
integer. Gross to date.
day
integer. Day of showing, indexed from 1.
estimated
logical. Flag for if the data is estimated.
Source
Box Office Mojo from https://www.boxofficemojo.com/release/rl1077904129/
Examples
data(barbie_box_office)
barbie_box_office[, 1:6]
#> # A tibble: 50 × 6
#> date dow rank daily percent_yd percent_lw
#> <date> <fct> <int> <int> <dbl> <dbl>
#> 1 2023-07-21 Friday 1 70503178 NA NA
#> 2 2023-07-22 Saturday 1 47812356 -32.2 NA
#> 3 2023-07-23 Sunday 1 43706510 -8.6 NA
#> 4 2023-07-24 Monday 1 26105167 -40.3 NA
#> 5 2023-07-25 Tuesday 1 26003569 -0.4 NA
#> 6 2023-07-26 Wednesday 1 23034051 -11.4 NA
#> 7 2023-07-27 Thursday 1 21238020 -7.8 NA
#> 8 2023-07-28 Friday 1 29032661 36.7 -58.8
#> 9 2023-07-29 Saturday 1 34586429 19.1 -27.7
#> 10 2023-07-30 Sunday 1 29392512 -15 -32.8
#> # ℹ 40 more rows