View source: R/get_raw_lichess.R
get_raw_lichess | R Documentation |
This function returns the raw json data for a player's or list of players' Lichess data as a data frame
get_raw_lichess(player_names, since = NULL, until = NULL)
player_names |
A vector of a valid username or usernames from Lichess |
since |
Games played since this date. An object of class 'Date' or a string of the form '"yyyy-mm-dd"'. If 'NULL', defaults to account creation date. |
until |
Games played until this date. An object of class 'Date' or a string of the form '"yyyy-mm-dd"'. If 'NULL', defaults to now. |
a dataframe of lichess data
## Not run:
georges_data <- get_raw_lichess(player_names = "Georges")
the_knife_data <- get_raw_lichess("the_knife", since = "2023-08-13", until = "2023-08-14")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.