Inference for Linear Regression in R
Jo Hardin
Professor, Pomona College
ggplot(starFatCal, aes(x = statistic)) +
geom_histogram(aes(y = ..density..), bins = 50) +
stat_function(fun = dt, color = "red", args = list(df = nrow(starbucks) - 2))
ggplot(starProFib, aes(x = statistic)) + geom_histogram(aes(y = ..density..), bins = 50) +
stat_function(fun = dt, color = "red", args = list(df = nrow(starbucks) - 2))
Inference for Linear Regression in R