I am trying to add a geom_smooth line of the average of Size to the code.
ggplot(data = Birds,
aes(Species, size, color=Subject)) +
geom_line() +
labs (x = "Species",
y = "Size(cm)",
title = "Size and Species of Birds") +
theme_bw()