Learn R Programming

ncaavolleyballr (version 0.4.3)

team_season_info: Extract arena, coach, record, and schedule information for a particular team and season

Description

The NCAA's main page for a team includes a tab called "Schedule/Results". This function extracts information about the team's venue, coach, and records, as well as the table of the schedule and results. This returns a list, so you can subset specific components with $ (e.g., for coach information from an object called output, use output$coach).

Usage

team_season_info(team_id = NULL)

Value

Returns a list that includes arena, coach, schedule, and record information.

Arguments

team_id

Team ID determined by NCAA for season. To find ID, use find_team_id().

See Also

Other functions that extract team statistics: team_match_stats(), team_season_stats()

Examples

Run this code
if (FALSE) { # interactive()
team_season_info(team_id = "585290")
}

Run the code above in your browser using DataLab