Skip to contents

Retrieves the race schedule for a given season, including circuit information, dates, and session times.

Usage

f1_races(season = NULL)

Arguments

season

Integer or character. The season year (e.g., 2024). Defaults to the current year.

Value

A tibble with one row per race, including columns:

season

Integer. Season year.

round

Integer. Round number.

race_name

Character. Name of the Grand Prix.

date

Date. Date of the race.

time

Character. Scheduled start time (UTC).

url

Character. Wikipedia URL for the race.

circuit_Circuit details (id, name, location, coordinates). first_practice_

First practice session date and time.

qualifying_Qualifying session date and time. sprint_

Sprint session date and time (where applicable).

See also

f1_circuits() for detailed circuit information.

Other reference data: f1_circuits(), f1_constructors(), f1_drivers(), f1_seasons()

Examples

if (FALSE) { # \dontrun{
# Race schedule for a specific season
f1_races(2024)

# Current season schedule
f1_races()
} # }