We will be using data from the World Happiness Report for this case study.
If you have already set the data up, then you can reuse the project you had going.
What questions can we answer with regression and this data set?
Download the .csv file on Automobiles Annual Imports and Exports
There are spaces in the column names, so we need to make sure the names are clean (easier to type). We will load the janitor
library and then use clean_names()
What is the effect of type (imports vs. exports) on number of cars?
To answer this question follow these steps:
lm()
) with automobile_volume as the response variableAnswer these questions about the results for question 1 on Gradescope
What is the effect of year on number of cars being imported and exported?
To answer this question follow these steps:
lm()
) with automobile_volume as the response variableDownload this clean data set on percentage of health conditions among children under age 18 and set up the data in your analysis environment.
What questions can you answer with this data set?