get_game_data returns a dataframe of game data for either a single user or a list of usernames

get_game_data(usernames)

Arguments

usernames

A character vector of player usernames from chess.com

Value

a dataframe of chess.com data plus additional analysis columns

Details

This function will take in a list of player usernames and return a dataframe of game metadata

Examples

if (FALSE) {
chess_analysis_single <- get_game_data(usernames = "JaseZiv")
chess_analysis_multiple <- get_game_data(usernames = c("JaseZiv", "Smudgy1"))
}