# count members in each conference and time zones!
fsu_plot <- winners |>
ggplot2::ggplot(ggplot2::aes(x = year, y = all_wins, color = team)) +
ggplot2::geom_line(linewidth = 0.5) +
ggplot2::geom_line(data = winners |> dplyr::filter(team == "Florida State"), linewidth = 2) +
ggplot2::scale_color_manual(values = c("Florida State" = "#782F40",
Other = "#eeeeee")) +
ggplot2::scale_x_continuous(breaks = seq(2014, 2022, 1)) +
ggplot2::scale_y_continuous(breaks = seq(0, 120, 20)) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.5,
y =70,
team = "Florida State",
height = .095
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =118,
team = "Alabama",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =111,
team = "Clemson",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =105,
team = "Ohio State",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =99,
team = "Georgia",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =92,
team = "Oklahoma",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =85,
team = "Notre Dame",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
cfbplotR::GeomCFBlogo,
x = 2022.3,
y =20,
team = "Kansas",
height = .045,
alpha = 0.6
) +
ggplot2::annotate(
geom = "label",
x = 2015.5,
y = 90,
color = "#333333",
fill = "#782F40",
label = "23 teams have won \n more games than \n Florida State \n since 2014",
size = 4,
fontface = 'bold',
family = 'mono',
alpha = 0.3
) +
ggplot2::labs(
title = "Total wins in the College Football Playoff Era",
subtitle = "Cumulative wins for all teams in a Power 5 conference, plus Notre Dame, as of the start of the 2023 season.",
caption = "Bless your chart | August 7, 2023 | data via cfbfastR",
x = "Year",
y = "Wins"
) +
ggthemes::theme_fivethirtyeight() +
ggplot2::theme(legend.position = "none")
# save it
ggplot2::ggsave(
"fsu.png",
fsu_plot,
w = 10,
h = 10,
dpi = 600,
type = 'cairo'
)
fsu_plot