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,
  ...
)

Arguments

progression_table

Function for creating progression table. Default is progression_RIR_increment

plot

Character string. Options include "%1RM" (default) and "adjustment"

signif_digits

Rounding numbers for plotting. Default is 3

adjustment_multiplier

Factor to multiply the adjustment. Useful when converting to percentage. Default is 1

...

Forwarder to the generate_progression_table function

Value

ggplot2 object

Examples

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
)