Skip to content

Instantly share code, notes, and snippets.

@daviddalpiaz
Created April 14, 2021 20:47
Show Gist options
  • Save daviddalpiaz/9384b18547195ff52e1c4a5664c1d0aa to your computer and use it in GitHub Desktop.
Save daviddalpiaz/9384b18547195ff52e1c4a5664c1d0aa to your computer and use it in GitHub Desktop.
Coan-Phillipi Deadlift Routine
max = 210
data.frame(
work_wt = c(
max * 0.750,
max * 0.800,
max * 0.850,
max * 0.900,
max * 0.800,
max * 0.850,
max * 0.900,
max * 0.950,
max * 0.975,
max * 1.000
),
work_reps = c(2, 2, 2, 2, 3, 2, 2, 2, 1, 1),
work_sets = c(1, 1, 1, 1, 3, 2, 2, 2, 1, 1),
speed_wt = c(
max * 0.60,
max * 0.65,
max * 0.70,
max * 0.75,
max * 0.65,
max * 0.70,
max * 0.75,
max * 0.70,
max * 0.70,
max * 0.60
),
speed_reps = c(3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
speed_sets = c(8, 8, 6, 5, 3, 3, 3, 3, 2, 2),
speed_rest = c(90, 90, 90, 90, 120, 120, 120, 120, 120, 120)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment