Learn R Programming

BasketballAnalyzeR (version 0.5.0)

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

Description

Add lines of NBA court to an existing ggplot2 plot

Usage

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

Examples

Run this code
# NOT RUN {
library(ggplot2)
p <- ggplot(data.frame(x=0, y=0), aes(x,y)) + coord_fixed()
drawNBAcourt(p)
# }

Run the code above in your browser using DataLab