NCAA D1 Expenditures

Side-by-side boxplots
Something with expenditures by sport.
Authors
Affiliation

Denali Stevens

St. Lawrence University

Ivan Ramler

St. Lawrence University

Published

May 17, 2024

We have data on the reported revenues and expenditures of NCAA D1 schools by sport (for 2019).

What interesting questions can be asked with this data?

Notes:

library(crosstalk)
library(d3scatter)
shared_sports2 <- SharedData$new(sports2)
bscols(widths = c(3,NA),
  list(
#    filter_checkbox("cyl", "Cylinders", shared_mtcars, ~cyl, inline = TRUE),
#    filter_slider("hp", "Horsepower", shared_mtcars, ~hp, width = "100%"),
    filter_select("auto", "Sports", shared_sports2, ~sports)
  ),
  d3scatter(shared_sports2, ~total_exp_menwomen, ~total_rev_menwomen, ~factor(sports), width="100%", height=250))