On Sit-Ups and Data Analysis
Musing #001I started going to the gym, and the place I go to launched a challenge: whoever does the most sit-ups without stopping wins fitness product prizes.
The fun part is they put up a board with everyone's results. Since I've been studying Python, I decided (after transcribing all 27 entries into Excel) to analyze the dataset. Here are the main findings:
The first thing I noticed on the board was the max value: 1,110 sit-ups. A jiu-jitsu instructor did that gigantic number in 45 minutes without stopping. After removing that outlier, I calculated the mode, median, and mean: 30, 75, and 111, respectively.
That already tells us it's a right-skewed distribution, with more values on the lower end, because, well, it's a lot easier to find people (like me) doing 30 sit-ups than the 1,100 the instructor did. To wrap it up, I made this boxplot. I use this chart in Excel all the time to analyze ship transit time, but in Python it's a lot more "aesthetic."
So there it is, the gym finally served a purpose.