powered by
This function computes either the total or the average statistics.
do_stats(df_games, type_stats = "Total", season, competition, type_season)
Data frame.
Data frame with the games, players info, advanced stats and eventually recoded teams names.
String. In English, the options are "Total" and "Average" and in Spanish, the options are "Totales" and "Promedio".
String indicating the season, for example, 2017-2018.
String. Options are "ACB", "Euroleague" and "Eurocup".
String with the round of competition, for example regular season or playoffs and so on.
Guillermo Vinue
compet <- "ACB" df <- do_join_games_bio(compet, acb_games_1718, acb_players_1718) df1 <- do_add_adv_stats(df) df2 <- do_stats(df1, "Total", "2017-2018", compet, "Regular Season")
Run the code above in your browser using DataLab