Chapter 4 - Geocentric Models

This chapter introduced the simple linear regression model, a framework for estimating the association between a predictor variable and an outcome variable. The Gaussian distribution comprises the likelihood in such models, because it counts up the relative numbers of ways different combinations of means and standard deviations can produce an observation. To fit these models to data, the chapter introduced quadratic approximation of the posterior distribution and the tool quap. It also introduced new procedures for visualizing prior and posterior distributions.

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. Problems are labeled Easy (E), Medium (M), and Hard(H).

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

4E1. In the model definition below, which line is the likelihood? \[\begin{align} \ y_i ∼ Normal(μ, σ) \\ \ μ ∼ Normal(0, 10) \\ \ σ ∼ Exponential(1) \\ \end{align}\]

# y_i ∼ Normal(μ, σ) is the likelihood line

4E2. In the model definition just above, how many parameters are in the posterior distribution?

# There are 2 parameters μ, σ

4E3. Using the model definition above, write down the appropriate form of Bayes’ theorem that includes the proper likelihood and priors.

# Pr(μ,σ|y) = (ΠiNormal (yi|μ, σ) Normal (μ|0,10) Uniform (σ|0,10)) / ∫∫ΠiNormal(hi|μ, σ)Normal(μ|0,10)Uniform(σ|0,10)dμdσ

4E4. In the model definition below, which line is the linear model? \[\begin{align} \ y_i ∼ Normal(μ, σ) \\ \ μ_i = α + βx_i \\ \ α ∼ Normal(0, 10) \\ \ β ∼ Normal(0, 1) \\ \ σ ∼ Exponential(2) \\ \end{align}\]

# μi=α+βxi is the linear model

4E5. In the model definition just above, how many parameters are in the posterior distribution?

# Three parameters α, β and σ

4M1. For the model definition below, simulate observed y values from the prior (not the posterior). Make sure to plot the simulation. \[\begin{align} \ y_i ∼ Normal(μ, σ) \\ \ μ ∼ Normal(0, 10) \\ \ σ ∼ Exponential(1) \\ \end{align}\]

sample_μ <- rnorm(1e4, 0, 10)
sample_σ <- runif(1e4, 0, 10)
prior_y <- rnorm(1e4, sample_μ, sample_σ)
dens(prior_y)

4M2. Translate the model just above into a quap formula.

formula <- alist(
  y ~ dnorm(μ, σ),
  μ ~ dnorm(0, 10),
  σ ~ dunif(0, 10)
)
4M3. Translate the quap model formula below into a mathematical model definition:

y ~ dnorm( mu , sigma ),
mu <- a + b*x,
a ~ dnorm( 0 , 10 ),
b ~ dunif( 0 , 1 ),
sigma ~ dexp( 1 )

flist <- alist(
  y ~ dnorm(μ, σ),
  μ <- a + b*x,
  a ~ dnorm(0, 50),
  b ~ dunif(0, 10),
  σ ~ dunif(0, 50)
)

4M4. A sample of students is measured for height each year for 3 years. After the third year, you want to fit a linear regression predicting height using year as a predictor. Write down the mathematical model definition for this regression, using any variable names and priors you choose. Be prepared to defend your choice of priors. Simulate from the priors that you chose to see what the model expects before it sees the data. Do this by sampling from the priors. Then consider 50 students, each simulated with a different prior draw. For each student simulate 3 years. Plot the 50 linear relationships with height(cm) on the y-axis and year on the x-axis. What can we do to make these priors more likely?

# hi ∼ Normal(μi,σ)
# μi = α + βti
# α ∼ Normal(120,20)
# β ∼ Normal(0,10)
# σ ∼ Uniform(0,50)
# slope β represent the growth rate of student's height, α represents a normal distribution of 150 cm with a standard deviation of 25 cm.

4M5. Now suppose I remind you that every student got taller each year. Does this information lead you to change your choice of priors? How? Again, simulate from the priors and plot.

# no, since β centered at 6cm.

4M6. Now suppose I tell you that the variance among heights for students of the same age is never more than 64cm. How does this lead you to revise your priors?

# by doing the uniform distribution.
# hi ∼ Normal(μ,σ)
# μi = α + βxi
# α ∼ Normal(150,25)
# β ∼ Normal(4,2)
# σ ∼ Uniform(0,8)
# σ is the square root of variance in order to establish the maximum.

4M7. Refit model m4.3 from the chapter, but omit the mean weight xbar this time. Compare the new model’s posterior to that of the original model. In particular, look at the covariance among the parameters. Show the pairs() plot. What is different? Then compare the posterior predictions of both models.

data(Howell1)
d <- Howell1
d2 <- d[ d$age >= 18 , ]
xbar <- mean(d2$weight)
m4.3 <- quap(
alist(
      height ~ dnorm( μ,σ ) , 
      μ <- a + b*( weight - xbar ) , 
      a ~ dnorm( 178 , 20 ) ,
      b ~ dlnorm( 0 , 1 ) ,
      σ ~ dunif( 0 , 50 )), data=d2 )
precis(m4.3)
##          mean         sd        5.5%      94.5%
## a 154.6013675 0.27030764 154.1693637 155.033371
## b   0.9032809 0.04192363   0.8362789   0.970283
## s   5.0718805 0.19115474   4.7663783   5.377383

4M8. In the chapter, we used 15 knots with the cherry blossom spline. Increase the number of knots and observe what happens to the resulting spline. Then adjust also the width of the prior on the weights—change the standard deviation of the prior and watch what happens. What do you think the combination of knot number and the prior on the weights controls?

data(cherry_blossoms)
d= cherry_blossoms
precis(d)
##                   mean          sd      5.5%      94.5%
## year       1408.000000 350.8845964 867.77000 1948.23000
## doy         104.540508   6.4070362  94.43000  115.00000
## temp          6.141886   0.6636479   5.15000    7.29470
## temp_upper    7.185151   0.9929206   5.89765    8.90235
## temp_lower    5.098941   0.8503496   3.78765    6.37000
##                                                                                                                           histogram
## year                       <U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2587><U+2581>
## doy                                                                <U+2581><U+2582><U+2585><U+2587><U+2587><U+2583><U+2581><U+2581>
## temp                                                               <U+2581><U+2583><U+2585><U+2587><U+2583><U+2582><U+2581><U+2581>
## temp_upper <U+2581><U+2582><U+2585><U+2587><U+2587><U+2585><U+2582><U+2582><U+2581><U+2581><U+2581><U+2581><U+2581><U+2581><U+2581>
## temp_lower <U+2581><U+2581><U+2581><U+2581><U+2581><U+2581><U+2581><U+2583><U+2585><U+2587><U+2583><U+2582><U+2581><U+2581><U+2581>
data(cherry_blossoms) 
d <- cherry_blossoms 
d2 <- d[ complete.cases(d$temp) , ]
num_knots <- 30
knot_list <- quantile( d2$year , probs=seq(0,1,length.out=num_knots))
library(splines) 
B <- bs(d2$year, knots=knot_list[-c(1,num_knots)] , degree=3 , intercept=TRUE )
plot( NULL , xlim=range(d2$year) , ylim=c(0,1) , xlab="year" , ylab="basis value" )
for ( i in 1:ncol(B) ) lines( d2$year , B[,i])

4H2. Select out all the rows in the Howell1 data with ages below 18 years of age. If you do it right, you should end up with a new data frame with 192 rows in it.

  1. Fit a linear regression to these data, using quap. Present and interpret the estimates. For every 10 units of increase in weight, how much taller does the model predict a child gets?

  2. Plot the raw data, with height on the vertical axis and weight on the horizontal axis. Superimpose the MAP regression line and 89% interval for the mean. Also superimpose the 89% interval for predicted heights.

  3. What aspects of the model fit concern you? Describe the kinds of assumptions you would change, if any, to improve the model. You don’t have to write any new code. Just explain what the model appears to be doing a bad job of, and what you hypothesize would be a better model.

d18 <- Howell1[Howell1$age<18,]
nrow(d18)
## [1] 192
#(a)
modeld18 <- quap(
  alist(
    height ~ dnorm( μ,σ ) ,
    μ <- a + b * ( weight - xbar )  ,
    a ~ dnorm( 130, 10) ,
    b ~ dlnorm( 0, 1 ) ,
    σ ~ dunif(0, 50)
  ),
  data=d18
)
precis(modeld18)
##         mean         sd       5.5%      94.5%
## a 178.721558 1.89458639 175.693643 181.749473
## b   2.655911 0.06768353   2.547739   2.764082
## s   8.458479 0.43376224   7.765244   9.151715
#(b)
plot(height ~ weight, data = d18, col = col.alpha(rangi2, 0.3))

weight.seq <- seq(from = min(d18$weight), to = max(d18$weight), by = 1)
μ <- link(modeld18, data = data.frame(weight = weight.seq))

μ.mean <- apply(μ, 2, mean)
μ.HPDI <- apply(μ, 2, HPDI, prob = 0.89)
lines(weight.seq, μ.mean)
shade(μ.HPDI, weight.seq)
## Warning in if (class(object) == "formula") {: the condition has length > 1 and
## only the first element will be used
## Warning in if (class(object) == "density") {: the condition has length > 1 and
## only the first element will be used
## Warning in if (class(object) == "matrix" & length(dim(object)) == 2) {: the
## condition has length > 1 and only the first element will be used
## Warning in if (class(object) == "matrix") {: the condition has length > 1 and
## only the first element will be used

# (c)

#looks like overestimating at both low (<10) and high (>30) and underestimating between 10 and 30 weights. The linear model doesnt seem to be doing a good job at predicting heights for most of the weights. I believe polynomial regression might be a better model here.