Description Usage Arguments Examples
Returns data about individual workouts. A vectorized function, so accepts multiple workoutIDs
at once.
1 2 3 4 5 6 7 8 | get_workouts_data(
workout_ids,
dictionary = list(numeric = c("v2_total_video_watch_time_seconds",
"v2_total_video_buffering_seconds", "leaderboard_rank"), list =
c("achievement_templates")),
parse_dates = TRUE,
...
)
|
workout_ids |
WorkoutIDs |
dictionary |
A named list. Maps a data-type to a column name. If |
parse_dates |
Whether to try and guess which columns are dates and convert |
... |
Other arguments passed on to methods |
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
get_workouts_data(
workout_ids = workout_ids,
dictionary = list(
"numeric" = c(
"v2_total_video_watch_time_seconds", "v2_total_video_buffering_seconds",
"v2_total_video_watch_time_seconds", "leaderboard_rank"
),
"list" = c("achievement_templates")
)
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.