I'm working on making shot charts for basketball. I need to figure out how to actually draw the outline of a basketball court in the background. Any ideas?



|
I'm working on making shot charts for basketball. I need to figure out how to actually draw the outline of a basketball court in the background. Any ideas?
|
||||
|
The following code was used to get this image:
ggplot(shots, aes(X,Y)) + stat_binhex(binwidth=c(3,3)) +
geom_point(size=3, alpha=0.5, aes(color=RESULT), position="jitter") +
coord_equal() + theme_grey() + opts(title="Golden State Warriors 2012 Shot Chart") +
geom_path(data=ft_line, aes(x,y), colour="white", size=2) +
geom_path(data=court, aes(x,y), colour="white", size=2)
The data in the geom_path commands contains the (x,y) coords for the white court diagram. |
|||
|
|
annotate_rasteror similar. – mnel Oct 9 '12 at 4:56+ geom_path(data=<basketball_court_specs>), if you know how a basket ball court is laid out. Check stackoverflow.com/questions/9805895/… for ideas (replacegeom_polygonwithgeom_path). – naught101 Oct 9 '12 at 5:13