drawNBAcourt: Add lines of NBA court to an existing ggplot2 plot

Description Usage Arguments Value Author(s) Examples

View source: R/drawNBAcourt.R

Description

Add lines of NBA court to an existing ggplot2 plot

Usage

1
drawNBAcourt(p, size = 1.5, col = "black", full = FALSE)

Arguments

p

a ggplot2 object.

size

numeric, line size.

col

line color.

full

logical; if TRUE draws a complete NBA court; if FALSE draws a half court.

Value

A ggplot2 object

Author(s)

Marco Sandri, Paola Zuccolotto, Marica Manisera (basketballanalyzer.help@unibs.it)

Examples

1
2
3
library(ggplot2)
p <- ggplot(data.frame(x=0, y=0), aes(x,y)) + coord_fixed()
drawNBAcourt(p)

BasketballAnalyzeR documentation built on July 2, 2020, 2:14 a.m.