Hi! I’m Cody Heintzleman. I’m originally from Destin, Florida and currently based in Lebanon, Ohio. I’m pursuing a B.A. in Organizational Leadership with a minor in Information Systems at Xavier University (expected Aug 2026).
I’m a U.S. Air Force veteran (8+ years) transitioning into the sports industry, where I combine operations, tech, and fan experience. I love building systems that make events run smoothly and using data to improve processes and performance.
LinkedIn: https://www.linkedin.com
The mean of \(x_1,\dots,x_n\)
is
\[ \bar{x} = \frac{1}{n}\sum_{i=1}^n x_i.
\]
# Demo: summarize and plot some data so the report proves code execution works
library(MASS)
head(Boston)
## crim zn indus chas nox rm age dis rad tax ptratio black lstat
## 1 0.00632 18 2.31 0 0.538 6.575 65.2 4.0900 1 296 15.3 396.90 4.98
## 2 0.02731 0 7.07 0 0.469 6.421 78.9 4.9671 2 242 17.8 396.90 9.14
## 3 0.02729 0 7.07 0 0.469 7.185 61.1 4.9671 2 242 17.8 392.83 4.03
## 4 0.03237 0 2.18 0 0.458 6.998 45.8 6.0622 3 222 18.7 394.63 2.94
## 5 0.06905 0 2.18 0 0.458 7.147 54.2 6.0622 3 222 18.7 396.90 5.33
## 6 0.02985 0 2.18 0 0.458 6.430 58.7 6.0622 3 222 18.7 394.12 5.21
## medv
## 1 24.0
## 2 21.6
## 3 34.7
## 4 33.4
## 5 36.2
## 6 28.7
x <- rnorm(200)
summary(x)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.5992 -0.5322 0.2362 0.1769 0.8691 2.6544
hist(x, main = "Histogram of x")
images/cody.jpg
). If you review locally, ensure the image
file exists in that folder.