estimate_rolling_1RM: Estimate the rolling profile and 1RM

View source: R/estimate-rolling.R

estimate_rolling_1RMR 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 estimate_k_1RM

...

Forwarded to estimate_function function

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
)

STMr documentation built on Nov. 2, 2023, 5:20 p.m.