###Set WD
setwd("G:/B-School/Other Schools/Harrisburg/Classes/Analytics 505 Bayesian/Assignment")
###Load Libraries
library(HDInterval)
library(rethinking)

Chapter 3 - Sampling the Imaginary

This chapter introduced the basic procedures for manipulating posterior distributions. Our fundamental tool is samples of parameter values drawn from the posterior distribution. These samples can be used to produce intervals, point estimates, posterior predictive checks, as well as other kinds of simulations. Posterior predictive checks combine uncertainty about parameters, as described by the posterior distribution, with uncertainty about outcomes, as described by the assumed likelihood function. These checks are useful for verifying that your software worked correctly. They are also useful for prospecting for ways in which your models are inadequate.

Place each answer inside the code chunk (grey box). The code chunks should contain a text response or a code that completes/answers the question or activity requested. Make sure to include plots if the question requests them.

Finally, upon completion, name your final output .html file as: YourName_ANLY505-Year-Semester.html and publish the assignment to your R Pubs account and submit the link to Canvas. Each question is worth 5 points

Questions

3-1. Suppose the globe tossing data had turned out to be 8 water in 15 tosses. Construct the posterior distribution, using grid approximation. Plot the posterior. Use the same flat prior as before.

p_grid <- seq(from = 0, to = 1, length.out = 1000)
prior <- rep(1, 1000)
likelihood <- dbinom(8, size = 15, prob = p_grid)
posterior <- likelihood * prior
posterior <- posterior / sum(posterior)
plot(x = p_grid, y = posterior, type = 'l')

3-2. Draw 10,000 samples from the grid approximation from above. Then use the samples to calculate the 90% HPDI for p.

sampled <- sample(p_grid, prob = posterior, size = 1e4, replace = TRUE)
HPDI_ans <- hdi(sampled, prob = 0.90)
HPDI_ans
##     lower     upper 
## 0.3073073 0.7537538 
## attr(,"credMass")
## [1] 0.95

3-3. Construct a posterior predictive check for this model and data. This means simulate the distribution of samples, averaging over the posterior uncertainty in p. What is the probability of observing 8 water in 15 tosses?

w <- rbinom(1e4, size = 15, prob = sampled)
hist(w)

Solu_33 <- sum(w == 8)/1e4
Solu_33
## [1] 0.142

3-4. Using the posterior distribution constructed from the new (8/15) data, now calculate the probability of observing 6 water in 9 tosses.

w_2 <- rbinom(1e4, size = 9, prob = sampled)
hist(w_2)

Solu_34 <- mean(w_2== 6)
Solu_34
## [1] 0.1753

3-5. Start over at 3-1, but now use a prior that is zero below p = 0.5 and a constant above p = 0.5. This corresponds to prior information that a majority of the Earth’s surface is water. Repeat each problem above and compare the inferences. Plot the posterior. What difference does the better prior make? If it helps, compare inferences (using both priors) to the true value p = 0.7.

# Redo 3-1
p_grid <- seq(from = 0, to = 1, length.out = 1e3)
prior <- ifelse(p_grid < .5, 0, 1)
likelihood <- dbinom(8, size = 15, prob = p_grid)
posterior <- likelihood * prior
posterior <- posterior / sum(posterior)
plot(x = p_grid, y = posterior, type = "l")

# Redo 3-2
sampled_redo <- sample(p_grid, prob = posterior, size = 1e4, replace = TRUE)
HPDI_ans2 <- hdi(sampled_redo, prob = .90)
HPDI_ans2
##     lower     upper 
## 0.5005005 0.7447447 
## attr(,"credMass")
## [1] 0.95
# Redo 3-3
w2 <- rbinom(1e4, size = 15, prob = sampled_redo)
hist(w2)

Solu_35 <- mean(w2== 8)
Solu_35
## [1] 0.153
# Redo 3-4
w_3 <- rbinom(1e4, size = 9, prob = sampled_redo)
hist(w_3)

Solu_35b <- mean(w_3== 6)
Solu_35b
## [1] 0.2361

3-6. Suppose you want to estimate the Earth’s proportion of water very precisely. Specifically, you want the 99% percentile interval of the posterior distribution of p to be only 0.05 wide. This means the distance between the upper and lower bound of the interval should be 0.05. How many times will you have to toss the globe to do this?

compute_pi_width <- function(N, true_p) { 
likelihood <- dbinom( round(N*true_p), size=N, prob=p_grid ) 
posterior <- likelihood * prior 
posterior <- posterior / sum(posterior) 
samples <- sample(p_grid, prob=posterior, size=1000, replace=TRUE ) 
interval <- PI(samples, prob=0.99) 
names(interval) <- NULL 
diff( interval ) 
}

true_p <- 0.7 
N <- 1000 
compute_pi_width(N, true_p)
## [1] 0.07411411