-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcfbd_stats.Rd
59 lines (43 loc) · 2 KB
/
cfbd_stats.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cfbd_stats.R
\name{cfbd_stats}
\alias{cfbd_stats}
\title{\strong{CFBD Stats Endpoint Overview}}
\description{
\describe{
\item{\code{cfbd_stats_categories()}:}{ Get college football mapping for stats categories.}
\item{\code{cfbd_stats_season_team()}:}{ Get season statistics by team.}
\item{\code{cfbd_stats_season_advanced()}:}{ Get season advanced statistics by team.}
\item{\code{cfbd_stats_game_advanced()}:}{ Get game advanced stats.}
\item{\code{cfbd_stats_season_player()}:}{ Get season statistics by player.}
}
}
\details{
\subsection{\strong{Get game advanced stats}}{
\if{html}{\out{<div class="sourceCode r">}}\preformatted{cfbd_stats_game_advanced(year = 2018, week = 12, team = "Texas A&M")
cfbd_stats_game_advanced(2019, team = "LSU")
cfbd_stats_game_advanced(2013, team = "Florida State")
}\if{html}{\out{</div>}}
}
\subsection{\strong{Get season advanced statistics by team}}{
\if{html}{\out{<div class="sourceCode r">}}\preformatted{cfbd_stats_season_advanced(2019, team = "LSU")
}\if{html}{\out{</div>}}
}
\subsection{\strong{Get season statistics by player}}{
\if{html}{\out{<div class="sourceCode r">}}\preformatted{cfbd_stats_season_player(year = 2018, conference = "B12", start_week = 1, end_week = 7)
cfbd_stats_season_player(2019, team = "LSU", category = "passing")
cfbd_stats_season_player(2013, team = "Florida State", category = "passing")
}\if{html}{\out{</div>}}
}
\subsection{\strong{Get season statistics by team}}{
\if{html}{\out{<div class="sourceCode r">}}\preformatted{cfbd_stats_season_team(year = 2018, conference = "B12", start_week = 1, end_week = 8)
cfbd_stats_season_team(2019, team = "LSU")
cfbd_stats_season_team(2013, team = "Florida State")
}\if{html}{\out{</div>}}
}
\subsection{\strong{Get stats categories}}{
This function identifies all Stats Categories identified in the regular stats endpoint.
\if{html}{\out{<div class="sourceCode r">}}\preformatted{cfbd_stats_categories()
}\if{html}{\out{</div>}}
}
}