Note: This document is currently incomplete, but provides worked examples that may be useful for completing the relevant lab.
set.seed(42)
some_data = rexp(n = 75, rate = 0.25)
head(some_data)
## [1] 0.7933472 2.6435810 1.1339642 0.1527676 1.8927065 5.8545086
hist(some_data, col = "darkgrey",
main = "Histogram of Some (Simulated) Data",
xlab = "x")
grid()
box()