plot_fastest {f1dataR} | R Documentation |
Plot Fastest Lap
Description
Creates a ggplot graphic that details the fastest lap for a driver in a race. Complete with a gearshift or speed analysis.
Usage
plot_fastest(
season = get_current_season(),
round = 1,
session = "R",
driver,
color = "gear",
race = lifecycle::deprecated()
)
Arguments
season |
number from 2018 to current season (defaults to current season). |
round |
number from 1 to 23 (depending on season selected) and defaults to most recent. |
session |
the code for the session to load Options are |
driver |
three letter driver code (see load_drivers() for a list). |
color |
argument that indicates which variable to plot along the
circuit. Choice of |
race |
number from 1 to 23 (depending on season selected) and defaults to most recent. |
Value
A ggplot object that indicates grand prix, driver, time and selected color variable.
Examples
# Plot Verstappen's fastest lap (speed) from Bahrain 2023:
if (interactive()) {
plot_fastest(2023, 1, "R", "VER", "speed")
}
[Package f1dataR version 1.5.3 Index]