| get_team_info | R Documentation |
Search for a team by name and return performance statistics. Supports partial names, typos, and case-insensitive input via the built-in fuzzy matching engine.
get_team_info(team, series = "all", type = "summary", interactive = TRUE)
team |
Character string of the team name to search for.
Supports partial names and common misspellings
(e.g., |
series |
Character string ( |
type |
Character string specifying the return format:
|
interactive |
Logical. When |
A tibble of team statistics (format depends on
type), or invisible(NULL) if no match is found.
get_driver_info(), get_manufacturer_info(),
load_series(), series_data
# Career summary across all series
get_team_info("Joe Gibbs Racing")
# Season-by-season Cup data
get_team_info(
"Joe Gibbs Racing",
series = "cup",
type = "season"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.