Learn R Programming

wehoop (version 3.0.0)

hhs_teams: Her Hoop Stats NCAA Team Single-Season Index

Description

Get the NCAA women's team single-season summary table from Her Hoop Stats.

Her Hoop Stats is a subscription service; this logs in with your own credentials (read from the email/password arguments, the wehoop.herhoopstats_email/..._password options, or the HERHOOPSTATS_EMAIL/HERHOOPSTATS_PW environment variables) and returns one row per team-season, with a team_link column for hhs_team_stats() / hhs_team_roster().

Usage

hhs_teams(
  min_season = most_recent_wbb_season(),
  max_season = most_recent_wbb_season(),
  division = 1,
  email = NULL,
  password = NULL
)

Value

A wehoop_data tibble, one row per team-season (record, scoring and per-100-possession columns), plus a team_link column and the requested min_season / max_season / division.

Arguments

min_season, max_season

Season range (4-digit ending year; 2024 = 2023-24). Default both to most_recent_wbb_season().

division

NCAA division: 1 (default), 2 or 3.

email, password

Optional explicit subscription credentials.

See Also

Other Her Hoop Stats Functions: hhs_team_roster(), hhs_team_stats()

Examples

Run this code
if (FALSE) {
  # requires HERHOOPSTATS_EMAIL / HERHOOPSTATS_PW
  hhs_teams(min_season = 2024, max_season = 2024, division = 1)
}

Run the code above in your browser using DataLab