[EN] Squat everyday challenge

What is the best way to recover your body strength after an extensive time of sitting, low activity period and moderate back pain? I don’t know, but I tried the damn hard one, which will put your body to it’s limits and mess up with your mind even more. Inspired by the Bulgarian Method I have squatted more than a month in a row. It may sound crazy, but it really makes sense: two of the major factors in any athletic training is specificity and overload. And Bulgarian methods nails both of them when it comes to weightlifting and powerlifting.

Firstly - a few disclaimers. I’m not a good squatter and my squat kind of sucks. My personal best in a competition is only 235 kilos. Comparing to a deadlift (285 kg), it’s quite a huge difference. However, I’ve been incorporating this method in my training before - the first time it helped me to reach my 200 kilos goal in 2013. The second time it was just for fun, when I had a lot of spare time being on the business trip in Sweden around 2016. In general, I haven’t chased huge squat numbers in my life since my body type is not that efficient for this lift. This approach became the norm especially when I was actively competing in strongman - squat events were really rare in these competitions. On the other hand, squat as an assistance exercise served a huge role for my training in general - I do squat variations almost every workout and they have tremendous carryover into strongman events such as yoke carry, atlas stones, core stabilization and the whole conditioning in general. That’s why I do not adjust my technique for the sake of a few kilograms on a squat and do squats in a narrow fashion, way below parallel.

For the sake of the squat everyday quest, I have decided to put some constrains in my training before I start:

  • I must do squats everyday
  • The amount of weight must not be less than 180 kilos (at that moment it was around 90% of my max)
  • I will increase the weight and reps depending on my condition that day (sometimes it’s only 180, other times - 180 for reps, in case I feel well - bring up 200 kilos and more)
  • Belt usage was acceptable due to excessive stress on a core

In addition to that, I have recorded all my attempts with 180 in order to preview the technique and measure the squat speed. You can watch the full 31 days squat compilation below:

What I have learned from this experience? Squat is still the king of the exercises. It does not hit your nervous system hard (compared to the deadlifts), so you can squat really often, even several times per day (used to do that as well during my olympic weightlifting training). Your legs hurt, but they get used to it really quick - just in a few days or so. E.g. on the third day I failed the second rep with 180 kg, but later on did 200 kilos for 3 reps, 210 kilos for 1 rep and so on. Your technique also has to be solid - in my case it’s not perfect, but rather comfortable. Squatting that often will put a good amount of stress on your joints and ligaments, so you would serve yourself a recipe for disaster in case your technique is not in tact. Moreover, I had a bad back due to extensive sitting and no training during the quarantine, but daily squatting worked like a charm and fixed all the problems for me.

Another good thing is that I also have collected some data from my daily squatting. Knowing the fact that I love crunching data, I will definitely put it for some use. I have plotted the time for an ascending portion of my squat, so you can clearly see the improvement during the time with some setbacks (some heavy training led to poor results next day).

These types of visualizations look really nice compared with the static ones and there’s a quick tip how to do them with just a few lines of code:

p <- ggplot(sq, aes(Day, duration)) +
  geom_line(size = 2, linetype = 2) +
  geom_hline(yintercept = mean(sq$duration), size = 1, color="blue", linetype = 3) +
  geom_point(aes(Day, duration, color = session, group = seq_along(Day)), size = 10) 
a <- p + transition_reveal(Day)  
animate(a, width = 1920, height = 600)

Another interesting question for me was whether getting up early in the morning is worth it. Normally I train around 7 PM, but in order to avoid people during quarantine (and be alone in the gym) I usually did my workouts at 8 AM or 10 PM. Since I have collected squat speed data from both AM (n = 14) and PM (n = 17) sessions, let’s evaluate whether the performance is alike depending on a training time. From the boxplot graph the difference of the distribution and their means is clearly visible. But how to formally prove the hypothesis, that squat speed will be different depending on the training time?

Luckily in statistics there is a simple method to test that - it’s called a t-test and it is used to determine if there is a significant difference between the means of two groups. Some assumptions need to be made in order to use this test and interpret it’s results in a correct manner. To put this into simple words: data should be normally distributed, scales should be continuous/ordinal and data should be a simple random sample from a population. My experiment design had some flaws (comparison of AM and PM sessions came to my mind right after I finished squatting everyday), but let’s assume that the conditions were the same each day (in reality they might differ due to rest time, eating, stress level, previous workouts - I can list possible factors for ages) and the measurements are solid (recordings were done using 30 frames per second, so uncertainty in this digital measuring device is 0.0(3) seconds, which is not that bad). However, we can test whether the data is normally distributed (I had to remove the best result from PM training to fit in) - the qq plot graph having 95% of confidence intervals is below (all points fit in):

Now it safe(ish) to test the null hypothesis (the means of AM and PM sessions are equal):

t.test(duration ~ session, data = sq)

And here it comes - null hypothesis was rejected by the t-test, meaning that we can now conclude - my squats are faster during night session comparing to an early morning. In other words - now I can sleep longer and get up at 9 AM without any guilt.

data:  duration by session
t = 1.5101, df = 22.026, p-value = 0.1452
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 -0.03622859  0.23035359
sample estimates:
mean in group AM mean in group PM 
        1.737000         1.639938 

Of course this experiment had some minor flaws from the beginning and would not qualify for any scientific article. However, it’s always good to back up your statements with numbers. I am not suggesting to ditch your morning training if you are an early bird by nature, but you must find out what suits you and maybe this type analysis will inspire you to test your training routine or even consider other factors which do the impact for your training/sleeping/mood. Collecting data is boring, but data analysis adds additional certainty in life. Good luck and happy squatting!

Kęstutis Daugėla
Kęstutis Daugėla
Analyst/Developer/Deadlifter

Related