| title: “Confidence Intervals for a Proportion - DATA 606 2020 Fall” |
| author: “Evan McLaughlin” |
date: “10.14.2020” |
knitr::opts_chunk$set(eval = TRUE, results = FALSE, fig.show = "show", message = FALSE)
library(tidyverse)
library(openintro)
library(ggplot2)
library(dplyr)
library(infer)
library(knitr)
library(png)
## point estimate ± z⋆ × SE
Z Score Table
## 95% of the data is within 1.96 standard deviations of the mean. The three pertinent values are
## point estimate = 45
## z⋆ = 1.96
## SE = 1.2
45 + (1.96 * 1.2)
45 - (1.96 * 1.2)