powered by
See the API documentation for more detailed explanations of parameters and more usage information and examples.
get_steps_intraday( date = lubridate::today(), detail_level = c("1min", "5min", "15min"), start_time = NULL, end_time = NULL )
A tibble with two columns: time and steps
time
steps
A date to get data for
The detail level. One of "1min", "5min", or "15min"
"1min"
"5min"
"15min"
The start time of the time window. Default: NULL gets the whole day
NULL
The end time of the time window. Default: NULL gets the whole day
Other intraday: get_active_zone_minutes_intraday(), get_calories_intraday(), get_distance_intraday(), get_elevation_intraday(), get_floors_intraday(), get_heart_rate_intraday()
get_active_zone_minutes_intraday()
get_calories_intraday()
get_distance_intraday()
get_elevation_intraday()
get_floors_intraday()
get_heart_rate_intraday()
if (FALSE) { date <- lubridate::today() ## get minute by minute data get_steps_intraday(detail_level = "15min") ## get more granular data get_steps_intraday(detail_level = "1min") }
Run the code above in your browser using DataLab