Clone your repo appex07-[github_name]
to create a new project in RStudio Cloud under the STA 199 class space.
Configure git
library(usethis)
use_git_config(user.name="your name", user.email="your email")
library(tidyverse)
library(broom)
paris_paintings <- read_csv("data/paris_paintings.csv",
na = c("n/a", "", "NA"))
Fit a multiple linear regression model with the following main effects: lrgfont
, Height_in
, Width_in
, and relig
.
Interpret each of the estimated model coefficients.
Fit a multiple linear regression model with main effects for Height_in
and lrgfont
, as well as their interaction.
What is the model equation for paintings where the dealer devotes an additional paragraph? How about for paintings where the dealer does NOT devote an additional paragraph?