Your RMarkdown notebook for this data dive should contain the following:

conf_int_runtime <- t.test(bechdel_data_movies$runtime_num)$conf.int
conf_int_runtime
## [1] 109.9603 112.0171
## attr(,"conf.level")
## [1] 0.95
conf_int_budget <- t.test(bechdel_data_movies$budget_2013)$conf.int
conf_int_budget
## [1] 52921588 58007629
## attr(,"conf.level")
## [1] 0.95

The confidence intervals tell us where the mean of the populations are for runtimes and movie budgets could likely be. I’m not sure whata confidence interval means other than that.