annotate_pitch {ggsoccer} | R Documentation |
Adds soccer pitch markings as a layer for use in a ggplot plot.
Description
Adds soccer pitch markings as a layer for use in a ggplot plot.
Usage
annotate_pitch(
colour = "dimgray",
fill = "white",
limits = TRUE,
dimensions = pitch_opta,
goals = goals_box,
linewidth = 0.5,
alpha = 1,
linetype = "solid"
)
Arguments
colour |
Colour of pitch outline. |
fill |
Colour of pitch fill. |
limits |
Whether to adjust the plot limits to display the whole pitch. |
dimensions |
A list containing the pitch dimensions to draw. See |
goals |
A function for generating goal markings. Defaults to |
linewidth |
The linewidth of the pitch markings |
alpha |
The transparency of the pitch markings and fill |
linetype |
The linetype of the pitch markings (e.g. "dotted") |
Value
list of ggplot geoms to be added to a ggplot plot
Examples
library(ggplot2)
shots_data <- data.frame(x = c(90, 85, 82, 78, 83),
y = c(43, 40, 52, 56, 44))
ggplot(shots_data, aes(x = x, y = y)) +
annotate_pitch() +
geom_point()
[Package ggsoccer version 0.1.7 Index]