Functions for creating ggplot2
plot of the Progression Table
plot_progression_table(
progression_table = progression_RIR_increment,
plot = "%1RM",
signif_digits = 3,
adjustment_multiplier = 1,
...
)
Function for creating progression table. Default is progression_RIR_increment
Character string. Options include "%1RM" (default) and "adjustment"
Rounding numbers for plotting. Default is 3
Factor to multiply the adjustment. Useful when converting to percentage. Default is 1
Forwarder to the generate_progression_table
function
ggplot2
object
plot_progression_table(progression_RIR_increment, "%1RM")
plot_progression_table(progression_RIR_increment, "adjustment")
# Create progression pot by using specific reps-max table and klin value
plot_progression_table(
progression_RIR,
max_perc_1RM_func = max_perc_1RM_linear,
klin = 36
)