Volleyball Tactics: Spikes vs. Tips

Danti Aleman

Introduction

The Math: Average Speed

To find the average speed of a specific attack type, we calculate the sample mean.

The formula for the sample mean is:

\[\bar{x} = \frac{\sum x_i}{n}\]

Where \(\sum x_i\) is the total sum of the speeds, and \(n\) is the number of attacks.

The Data (R Code)

library(ggplot2)
library(plotly)

volleyball_data <- data.frame(
  Attack_Type = c("Spike", "Spike", "Spike", "Spike", "Spike",
                  "Tip", "Tip", "Tip", "Tip", "Tip"),
  Speed_mph = c(45, 50, 48, 52, 47,
                15, 12, 14, 18, 16)
)

Speed Boxplot

Speed Scatter

Interactive Plot

The Math: Speed Variance

To see how much the speeds vary from hit to hit, we calculate the standard deviation.

The formula is:\[s = \sqrt{\frac{\sum(x_i - \bar{x})^2}{n-1}}\]

A higher standard deviation means the attack speeds are more unpredictable.

Conclusion