max_reps {STMr} | R Documentation |
Family of functions to estimate max number of repetition (nRM)
Description
Family of functions to estimate max number of repetition (nRM)
Usage
max_reps_epley(perc_1RM, k = 0.0333)
max_reps_modified_epley(perc_1RM, kmod = 0.0353)
max_reps_linear(perc_1RM, klin = 33)
Arguments
perc_1RM |
Numeric vector. % 1RM used (use 0.5 for 50 %, 0.9 for 90 %) |
k |
User defined |
kmod |
User defined |
klin |
User defined |
Value
Numeric vector. Predicted maximal number of repetitions (nRM)
Functions
-
max_reps_epley()
: Estimate max number of repetition (nRM) using the Epley's equation -
max_reps_modified_epley()
: Estimate max number of repetition (nRM) using the Modified Epley's equation -
max_reps_linear()
: Estimate max number of repetition (nRM) using the Linear/Brzycki's equation
Examples
# ------------------------------------------
# Epley equation
max_reps_epley(0.85)
max_reps_epley(c(0.75, 0.85), k = 0.04)
# ------------------------------------------
# Modified Epley equation
max_reps_modified_epley(0.85)
max_reps_modified_epley(c(0.75, 0.85), kmod = 0.05)
# ------------------------------------------
# Linear/Brzycki's equation
max_reps_linear(0.85)
max_reps_linear(c(0.75, 0.85), klin = 36)
[Package STMr version 0.1.6 Index]