View source: R/fetch-squiggle-data.R
fetch_squiggle_data | R Documentation |
Use fetch_squiggle_data
to access the Squiggle API. See instructions at api.squiggle.com.au.
fetch_squiggle_data( query = c("teams", "sources", "games", "tips", "ladder", "standings", "virtual", "pav"), ... )
query |
A text string. The main query to use with the API. Must be one of |
... |
(optional) An optional argument provided to the Squiggle API. See details for more info. |
The optional arguments to squiggle can be one of the following.
#'
year: an integer specifying the year to return data from, e.g. year = 2018
round: an integer specifying the round to return data from, e.g. round = 12
game: an integer specifying the game ID to return data from, e.g. game = 10
source: an integer specifying the ID of the source to return data from, e.g. source = 1
For full instructions, see api.squiggle.com.au
A dataframe, with the resultant data that matches the query specified in query
, as well as any optional filters.
## Not run: # Return a list of the sources, with ID's sources <- get_squiggle_data("sources") # Get tips for Round 1, 2018 tips <- get_squiggle_data(query = "tips", round = 1, year = 2018) # Get tips from Squiggle 2019 squiggle <- get_squiggle_data(query = "tips", source = 1, year = 2019) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.