estimate_rolling_1RM {STMr} | R Documentation |
Estimate the rolling profile and 1RM
Description
Estimate the rolling profile and 1RM
Usage
estimate_rolling_1RM(
weight,
reps,
eRIR = 0,
day_index,
window = 14,
estimate_function = estimate_k_1RM,
...
)
Arguments
weight |
Weight used |
reps |
Number of repetitions done |
eRIR |
Subjective estimation of reps-in-reserve (eRIR) |
day_index |
Day index used to estimate rolling window |
window |
Width of the rolling window. Default is 14 |
estimate_function |
Estimation function to be used. Default is
|
... |
Forwarded to |
Value
Data frame with day index and coefficients returned by the estimate_function
function
Examples
estimate_rolling_1RM(
weight = strength_training_log$weight,
reps = strength_training_log$reps,
eRIR = strength_training_log$eRIR,
day_index = strength_training_log$day,
window = 10,
estimate_function = estimate_k_1RM_quantile,
tau = 0.9
)
[Package STMr version 0.1.6 Index]