Description Usage Arguments Value Examples
mvglmmRank reads an input file in a specific game.data
format. This function takes a "compact results" dataset for an NCAA season
and adds columns to satisfy the mvglmmRank requirements.
1  | kaggle_game_data(compact_results)
 | 
compact_results | 
 a Kaggle NCAA "Compact Results" dataset  | 
the dataset augmented with the input columns for mvglmmRank
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | ## Not run: 
RegularSeasonCompactResults <- readr::read_csv(
  "~/DFS/kaggle/RegularSeasonCompactResults.csv",
  col_types = cols(
    DayNum = col_integer(),
    LScore = col_integer(),
    LTeamID = col_integer(),
    NumOT = col_integer(),
    Season = col_integer(),
    WScore = col_integer(),
    WTeamID = col_integer())) %>%
  filter(Season == 2019)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.