This chapter introduced interactions, which allow for the association between a predictor and an outcome to depend upon the value of another predictor. While you can’t see them in a DAG, interactions can be important for making accurate inferences. Interactions can be difficult to interpret, and so the chapter also introduced triptych plots that help in visualizing the effect of an interaction. No new coding skills were introduced, but the statistical models considered were among the most complicated so far in the book.
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.
8-1. Recall the tulips example from the chapter. Suppose another set of treatments adjusted the temperature in the greenhouse over two levels: cold and hot. The data in the chapter were collected at the cold temperature. You find none of the plants grown under the hot temperature developed any blooms at all, regardless of the water and shade levels. Can you explain this result in terms of interactions between water, shade, and temperature?
#An interaction allows the relationship between a predictor and an outcome to depend upon the value of another #predictor.As there are three predictor #variables now (water, shade, and temperature), we would have a single three-way interaction and three two-way #interactions (WST, WS, WT, and ST).
8-2. Can you invent a regression equation that would make the bloom size zero, whenever the temperature is hot?
#The algebraic form of the regression equation would be:
# μi=α+βWWi+βSSi+βTTi+βWSTWiSiTi+βWSWiSi+βWTWiTi+βSTSiTi
# assuming all predictors are equal to 1:
# μi|Wi=1,Si=1,T=1=α+βW+βS+βT+βWST+βWS+βWT+βST
# When Ti=0, the full regression equation would be:
# μi=α+βWWi+βSSi−αTi−βWSWiSiTi+βWSWiSi−βWWiTi−βSSiTi
#**8-3.** Repeat the tulips analysis, but this time use priors that constrain the effect of water to be positive
#and the effect of shade to be negative. Use prior predictive simulation and visualize. What do these prior
#assumptions mean for the interaction prior, if anything?
8-4. Return to the data(tulips) example in the chapter. Now include the bed variable as a predictor in the interaction model. Don’t interact bed with the other predictors; just include it as a main effect. Note that bed is categorical. So to use it properly, you will need to either construct dummy variables or rather an index variable, as explained in Chapter 5.
8-5. Use WAIC to compare the model from 8-4 to a model that omits bed. What do you infer from this comparison? Can you reconcile the WAIC results with the posterior distribution of the bed coefficients?