R client for accessing Steam’s REST API specifically for the Counter-Strike Global Offensive Game (CS Go) data. Check out the Steam documentation website for more information.
The goal of CSGo
is to provide an easy way to connect
and pull data from the Steam API specifically for the Counter-Strike
Global Offensive Game (CS Go).
The CSGo
package should be used in strict accordance
with Steam Api Terms
of Use.
To get the current released version from CRAN:
install.packages("CSGo")
To get the current development version from GitHub:
# install.packages("devtools")
::install_github("adsoncostanzifilho/CSGo") devtools
The first step to use the CSGo
package is to have your
own credentials (API key) to pull the CSGo data from the Steam API.
For more information about how to get your own API Key run in your R
vignette("auth", package = "CSGo")
.
Now that you already have your API Key you should be able to collect your own CSGo data as well as your friends’ data.
library(CSGo)
# to get my own statistics
<- get_stats_user(api_key = 'your_key', user_id = '76561198263364899')
my_stats
# to get the statistics of all my "public" friends
<- get_stats_friends(api_key = 'your_key', user_id = '76561198263364899') friends_stats
PS: Take a look at the
vignette("usecase", package = "CSGo")
to get some
ideas.