There is no way ten players from the NBA can be representative of the whole league. So let’s see the trends for shooting efficiency over time… in the forty years of league history since the inception of the three point line.
##Plotly Code
bruh <- ggplot(NBAdf, aes(x = Season)) +
geom_point(aes(y = X3P.), color = "blue", shape = 21, size = 1.0, stroke = 1.5) +
geom_point(aes(y = FG.), color = "red" , shape = 21, size = 1.0, stroke = 1.5) +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1)) +
labs(title = "3 point shooting and 2 point shooting through 40 years of the NBA", y = "Shooting Percentages (Decimal Percentages)")+
coord_cartesian(ylim = c(0,0.70))
ggplotly(bruh)