class: center, middle, inverse, title-slide # Foundation for Inference ## DATA 606 - Statistics & Probability for Data Analytics ### Jason Bryer, Ph.D. ### March 10, 2021 --- # One Minute Paper Results .pull-left[ **What was the most important thing you learned during this class?** <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-2-1.png" style="display: block; margin: auto;" /> ] .pull-right[ **What important question remains unanswered for you?** <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-3-1.png" style="display: block; margin: auto;" /> ] --- class: font140 # Homework Presentations * 4.2 Jie Zou * 4.17 Joe Connolly * 4.22 Daniel Sullivan * 4.48 Sean Connin --- # Population Distribution (Uniform) ```r n <- 1e5 pop <- runif(n, 0, 1) mean(pop) ``` ``` ## [1] 0.5009243 ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-5-1.png" style="display: block; margin: auto;" /> --- # Random Sample (n=10) ```r samp1 <- sample(pop, size=10) mean(samp1) ``` ``` ## [1] 0.5849615 ``` ```r hist(samp1) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-7-1.png" style="display: block; margin: auto;" /> --- # Random Sample (n=30) ```r samp2 <- sample(pop, size=30) mean(samp2) ``` ``` ## [1] 0.4959867 ``` ```r hist(samp2) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-9-1.png" style="display: block; margin: auto;" /> --- # Lots of Random Samples ```r M <- 1000 samples <- numeric(length=M) for(i in seq_len(M)) { samples[i] <- mean(sample(pop, size=30)) } head(samples, n=8) ``` ``` ## [1] 0.5341629 0.5512647 0.5459150 0.4582795 0.4340713 0.5906755 0.5408689 0.5475928 ``` --- # Sampling Distribution ```r hist(samples) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-11-1.png" style="display: block; margin: auto;" /> --- # Central Limit Theorem (CLT) Let `\(X_1\)`, `\(X_2\)`, ..., `\(X_n\)` be independent, identically distributed random variables with mean `\(\mu\)` and variance `\(\sigma^2\)`, both finite. Then for any constant `\(z\)`, $$ \underset { n\rightarrow \infty }{ lim } P\left( \frac { \bar { X } -\mu }{ \sigma /\sqrt { n } } \le z \right) =\Phi \left( z \right) $$ where `\(\Phi\)` is the cumulative distribution function (cdf) of the standard normal distribution. --- # In other words... The distribution of the sample mean is well approximated by a normal model: $$ \bar { x } \sim N\left( mean=\mu ,SE=\frac { \sigma }{ \sqrt { n } } \right) $$ where SE represents the **standard error**, which is defined as the standard deviation of the sampling distribution. In most cases `\(\sigma\)` is not known, so use `\(s\)`. --- # CLT Shiny App ```r library(DATA606) shiny_demo('sampdist') shiny_demo('CLT_mean') ``` --- # Standard Error ```r samp2 <- sample(pop, size=30) mean(samp2) ``` ``` ## [1] 0.5386908 ``` ```r (samp2.se <- sd(samp2) / sqrt(length(samp2))) ``` ``` ## [1] 0.04865808 ``` --- # Confidence Interval The confidence interval is then `\(\mu \pm CV \times SE\)` where CV is the critical value. For a 95% confidence interval, the critical value is ~1.96 since `$$\int _{ -1.96 }^{ 1.96 }{ \frac { 1 }{ \sigma \sqrt { 2\pi } } { d }^{ -\frac { { \left( x-\mu \right) }^{ 2 } }{ 2{ \sigma }^{ 2 } } } } \approx 0.95$$` ```r qnorm(0.025) # Remember we need to consider the two tails, 2.5% to the left, 2.5% to the right. ``` ``` ## [1] -1.959964 ``` ```r (samp2.ci <- c(mean(samp2) - 1.96 * samp2.se, mean(samp2) + 1.96 * samp2.se)) ``` ``` ## [1] 0.4433210 0.6340606 ``` --- # Confidence Intervals (cont.) We are 95% confident that the true population mean is between 0.443321, 0.6340606. That is, if we were to take 100 random samples, we would expect at least 95% of those samples to have a mean within 0.443321, 0.6340606. ```r ci <- data.frame(mean=numeric(), min=numeric(), max=numeric()) for(i in seq_len(100)) { samp <- sample(pop, size=30) se <- sd(samp) / sqrt(length(samp)) ci[i,] <- c(mean(samp), mean(samp) - 1.96 * se, mean(samp) + 1.96 * se) } ci$sample <- 1:nrow(ci) ci$sig <- ci$min < 0.5 & ci$max > 0.5 ``` --- # Confidence Intervals ```r ggplot(ci, aes(x=min, xend=max, y=sample, yend=sample, color=sig)) + geom_vline(xintercept=0.5) + geom_segment() + xlab('CI') + ylab('') + scale_color_manual(values=c('TRUE'='grey', 'FALSE'='red')) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-17-1.png" style="display: block; margin: auto;" /> --- # Hypothesis Testing * We start with a null hypothesis ( `\(H_0\)` ) that represents the status quo. * We also have an alternative hypothesis ( `\(H_A\)` ) that represents our research question, i.e. what we're testing for. * We conduct a hypothesis test under the assumption that the null hypothesis is true, either via simulation or traditional methods based on the central limit theorem. * If the test results suggest that the data do not provide convincing evidence for the alternative hypothesis, we stick with the null hypothesis. If they do, then we reject the null hypothesis in favor of the alternative. --- # Hypothesis Testing (using CI) `\(H_0\)`: The mean of `samp2` = 0.5 `\(H_A\)`: The mean of `samp2` `\(\ne\)` 0.5 Using confidence intervals, if the *null* value is within the confidence interval, then we *fail* to reject the *null* hypothesis. ```r (samp2.ci <- c(mean(samp2) - 2 * sd(samp2) / sqrt(length(samp2)), mean(samp2) + 2 * sd(samp2) / sqrt(length(samp2)))) ``` ``` ## [1] 0.4413746 0.6360070 ``` Since 0.5 fall within 0.4413746, 0.636007, we *fail* to reject the null hypothesis. --- # Hypothesis Testing (using *p*-values) $$ \bar { x } \sim N\left( mean=0.49,SE=\frac { 0.27 }{ \sqrt { 30 } = 0.049 } \right) $$ $$ Z=\frac { \bar { x } -null }{ SE } =\frac { 0.49-0.50 }{ 0.049 } = -.204081633 $$ ```r pnorm(-.204) * 2 ``` ``` ## [1] 0.8383535 ``` --- # Hypothesis Testing (using *p*-values) ```r DATA606::normal_plot(cv = c(.204), tails = 'two.sided') ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-20-1.png" style="display: block; margin: auto;" /> --- # Type I and II Errors There are two competing hypotheses: the null and the alternative. In a hypothesis test, we make a decision about which might be true, but our choice might be incorrect. | | fail to reject H<sub>0</sub> | reject H<sub>0</sub> | |--------------------|:----------------------------:|:--------------------:| | H<sub>0</sub> true | ✔ | Type I Error | | H<sub>A</sub> true | Type II Error | ✔ | <br /><br /> * Type I Error: **Rejecting** the null hypothesis when it is **true**. * Type II Error: **Failing to reject** the null hypothesis when it is **false**. --- # Hypothesis Test If we again think of a hypothesis test as a criminal trial then it makes sense to frame the verdict in terms of the null and alternative hypotheses: <p style="padding-left:150px"> H<sub>0</sub> : Defendant is innocent<br/> H<sub>A</sub> : Defendant is guilty </p> Which type of error is being committed in the following circumstances? * Declaring the defendant innocent when they are actually guilty <center>Type 2 error</center> * Declaring the defendant guilty when they are actually innocent <center>Type 1 error</center> Which error do you think is the worse error to make? --- # Null Distribution ```r (cv <- qnorm(0.05, mean=0, sd=1, lower.tail=FALSE)) ``` ``` ## [1] 1.644854 ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-22-1.png" style="display: block; margin: auto;" /> --- # Alternative Distribution <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-23-1.png" style="display: block; margin: auto;" /> ```r pnorm(cv, mean=cv, lower.tail = FALSE) ``` ``` ## [1] 0.5 ``` --- # Another Example (mu = 2.5) .pull-left[ ```r mu <- 2.5 (cv <- qnorm(0.05, mean=0, sd=1, lower.tail=FALSE)) ``` ``` ## [1] 1.644854 ``` ] .pull-right[ <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-26-1.png" style="display: block; margin: auto;" /><img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-26-2.png" style="display: block; margin: auto;" /> ] --- # Numeric Values Type I Error ```r pnorm(mu, mean=0, sd=1, lower.tail=FALSE) ``` ``` ## [1] 0.006209665 ``` Type II Error ```r pnorm(cv, mean=mu, lower.tail = TRUE) ``` ``` ## [1] 0.1962351 ``` --- # Shiny Application Visualizing Type I and Type II errors: [https://bcdudek.net/betaprob/](https://bcdudek.net/betaprob/) --- # Why p < 0.05? Check out this page: https://r.bryer.org/shiny/Why05/ See also: Kelly M. [*Emily Dickinson and monkeys on the stair Or: What is the significance of the 5% significance level?*](http://www.acsu.buffalo.edu/~grant/5pcMarkKelley.pdf) Significance 10:5. 2013. --- # Statistical vs. Practical Significance * Real differences between the point estimate and null value are easier to detect with larger samples. * However, very large samples will result in statistical significance even for tiny differences between the sample mean and the null value (effect size), even when the difference is not practically significant. * This is especially important to research: if we conduct a study, we want to focus on finding meaningful results (we want observed differences to be real, but also large enough to matter). * The role of a statistician is not just in the analysis of data, but also in planning and design of a study. --- class: center, middle, inverse # Bootstrapping --- # Bootstrapping * First introduced by Efron (1979) in [*Bootstrap Methods: Another Look at the Jackknife*](https://projecteuclid.org/euclid.aos/1176344552). * Estimates confidence of statistics by resampling *with* replacement. * The *bootstrap sample* provides an estimate of the sampling distribution. * The `boot` R package provides a framework for doing bootstrapping: https://www.statmethods.net/advstats/bootstrapping.html --- # Bootstrapping Example (Population) Define our population with a uniform distribution. ```r n <- 1e5 pop <- runif(n, 0, 1) mean(pop) ``` ``` ## [1] 0.4992631 ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-30-1.png" style="display: block; margin: auto;" /> --- # Bootstrapping Example (Sample) We observe one random sample from the population. ```r samp1 <- sample(pop, size = 50) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-32-1.png" style="display: block; margin: auto;" /> --- # Bootsrapping Example (Estimate) ```r boot.samples <- numeric(1000) # 1,000 bootstrap samples for(i in seq_along(boot.samples)) { tmp <- sample(samp1, size = length(samp1), replace = TRUE) boot.samples[i] <- mean(tmp) } head(boot.samples) ``` ``` ## [1] 0.4412012 0.4576781 0.4476861 0.5046606 0.5757116 0.4836984 ``` --- # Bootsrapping Example (Distribution) ```r d <- density(boot.samples) h <- hist(boot.samples, plot=FALSE) hist(boot.samples, main='Bootstrap Distribution', xlab="", freq=FALSE, ylim=c(0, max(d$y, h$density)+.5), col=COL[1,2], border = "white", cex.main = 1.5, cex.axis = 1.5, cex.lab = 1.5) lines(d, lwd=3) ``` <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-34-1.png" style="display: block; margin: auto;" /> --- # 95% confidence interval ```r c(mean(boot.samples) - 1.96 * sd(boot.samples), mean(boot.samples) + 1.96 * sd(boot.samples)) ``` ``` ## [1] 0.3898968 0.5367211 ``` --- # Bootstrapping is not just for means! ```r boot.samples.median <- numeric(1000) # 1,000 bootstrap samples for(i in seq_along(boot.samples.median)) { tmp <- sample(samp1, size = length(samp1), replace = TRUE) boot.samples.median[i] <- median(tmp) # NOTICE WE ARE NOW USING THE median FUNCTION! } head(boot.samples.median) ``` ``` ## [1] 0.3954266 0.5412779 0.4664219 0.4983298 0.4983298 0.4300514 ``` 95% confidence interval for the median ```r c(mean(boot.samples.median) - 1.96 * sd(boot.samples.median), mean(boot.samples.median) + 1.96 * sd(boot.samples.median)) ``` ``` ## [1] 0.3330762 0.5804206 ``` --- class: inverse, middle, center # Review --- # Review: Sampling Distribution <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-38-1.png" style="display: block; margin: auto;" /> --- # Review: Sampling Distribution <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-39-1.png" style="display: block; margin: auto;" /> --- # Review: Sampling Distribution <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-40-1.png" style="display: block; margin: auto;" /> --- # Review: Add Bootstrap Distribution <img src="data:image/png;base64,#05-Foundation_for_Inference_files/figure-html/unnamed-chunk-41-1.png" style="display: block; margin: auto;" /> --- class: left # One Minute Paper .font150[ Complete the one minute paper: https://forms.gle/gY9SeBCPggHEtZYw6 1. What was the most important thing you learned during this class? 2. What important question remains unanswered for you? ]