CMSC 405
Overview
SQL for the force plate: allows data queries/pulls
made by Hawkins Dynamics for API Integration
Main usage: mass reports, machine learning data sets, and data flow
Loading
Authentication with API Key - get_access()
get_tests
get_forcetime / get_athletes
force-time data for a specific test by ID
raw physics of one jump: useful in scientific / study testing
# create a data frame of my athlete info
roster <- get_athletes()
#ID of example athlete
ID = "9IT2dWfglX0rG2j3kx3Y"
# Unique identifier for Counter-Movement Test
CMJ = "96baa7ef1443c7a219702eb22e3e68d3"
#Pulling tests related to specific ID
ex_CMJ_data <- last_100_days_data %>%
filter(athlete_id == ID, testType_uuid == CMJ)
#2796 -> 26 tests from last 100 days
ex_test_id <- "SS6GjjsLRrRbEu1Xyk2u"
ex_forcetime <- get_forcetime(testId = ex_test_id)