Photo Mauro Mora on Unsplash
In this assignment we continue our exploration of the 2016 GSS dataset from the previous homework.
Follow the assignment link and clone the project in RStudio and open the R Markdown document. Knit the document to make sure it compiles without errors.
Before we introduce the data, let’s warm up with some simple exercises. Update the YAML of your R Markdown file with your information, knit, commit, and push your changes. Make sure to commit with a meaningful commit message. Then, go to your repo on GitHub and confirm that your changes are visible in your Rmd and md files. If anything is missing, commit and push again.
We’ll use the tidyverse package for much of the data wrangling and visualisation, the tidymodels package for modeling and inference, and the data lives in the dsbox package.
You can load them by running the following in your Console:
#install.packages("devtools")
library(devtools)
#devtools::install_github("rstudio-education/dsbox")
library(tidyverse)
library(tidymodels)
library(dsbox)
The data can be found in the dsbox package, and it’s
called gss16
. Since the dataset is distributed with the
package. It is also available in the data folder. You can find out more
about the dataset by inspecting its documentation, which you can access
by running ?gss16
in the Console or using the Help menu in
RStudio to search for gss16
. You can also find this
information here.
In this section we’re going to build a model to predict whether someone agrees or doesn’t agree with the following statement:
Even if it brings no immediate benefits, scientific research that advances the frontiers of knowledge is necessary and should be supported by the federal government.
The responses to the question on the GSS about this statement are in
the advfront
variable.
It’s important that you don’t recode the NAs, just the remaining levels.
advfront
variable such that it has two
levels: Strongly agree
and “Agree"
combined
into a new level called agree
and the remaining levels
(except NA
s) combined into”Not agree"
. Then,
re-order the levels in the following order: "Agree"
and
"Not agree"
. Finally, count()
how many times
each new level appears in the advfront
variable.You can do this in
various ways. One option is to use the str_detect()
function to detect the existence of words like liberal or conservative.
Note that these sometimes show up with lowercase first letters and
sometimes with upper case first letters. To detect either in the
str_detect()
function, you can use “[Ll]iberal” and
“[Cc]onservative”. But feel free to solve the problem however you like,
this is just one option!
polviews
variable such that
levels that have the word “liberal” in them are lumped into a level
called "Liberal"
and those that have the word conservative
in them are lumped into a level called "Conservative"
.
Then, re-order the levels in the following order:
"Conservative"
, "Moderate"
, and
"Liberal"
. Finally, count()
how many times
each new level appears in the polviews
variable.gss16_advfront
that
includes the variables advfront
, educ
,
polviews
, and wrkstat
. Then, use the
drop_na()
function to remove rows that contain
NA
s from this new data frame. Sample code is provided
below.<- gss16 %>%
gss16_advfront select(___, ___, ___, ___) %>%
drop_na()
initial_split()
. Call
the training data gss16_train
and the testing data
gss16_test
. Sample code is provided below. Use these
specific names to make it easier to follow the rest of the
instructions.set.seed(___)
<- initial_split(gss16_advfront)
gss16_split <- training(gss16_split)
gss16_train <- testing(gss16_split) gss16_test
We are going to do a little extra preproccessing using a recipe
with the following steps for predicting advfront
from
polviews
, wrkstat
, and educ
.
Name this recipe gss16_rec_1
. (We’ll create one more
recipe later, that’s why we’re naming this recipe _1
.)
Sample code is provided below.
step_other()
to pool values that occur less than 10%
of the time (threshold = 0.10
) in the wrkstat
variable into "Other"
.
step_dummy()
to create dummy variables for
all_nominal()
variables that are predictors,
i.e. all_predictors()
<- recipe(advfront ~ polviews + wrkstat + educ, data = gss16_train) %>%
gss16_rec_1 step_other(wrkstat, threshold = ______, other = "Other") %>%
step_dummy(all_nominal(), -all_outcomes())
"glm"
as the
engine. Name this specification gss16_spec
. Sample code is
provided below.<- ___() %>%
gss16_spec set_engine("___")
gss16_rec
) and the model you specified
(gss16_spec
). Name this workflow
gss16_wflow_1
. Sample code is provided below.<- workflow() %>%
gss16_wflow_1 add_model(___) %>%
add_recipe(___)
Perform 5-fold cross validation. specifically,
split the training data into 5 folds (don’t forget to set a seed first!),
apply the workflow you defined earlier to the folds with
fit_resamples()
, and
collect_metrics()
and comment on the consistency of
metrics across folds (you can get the area under the ROC curve and the
accuracy for each fold by setting summarize = FALSE
in
collect_metrics()
)
report the average area under the ROC curve and the accuracy for
all cross validation folds collect_metrics()
set.seed(___)
<- vfold_cv(___, v = ___)
gss16_folds
<- gss16_wflow_1 %>%
gss16_fit_rs_1 fit_resamples(___)
collect_metrics(___, summarize = FALSE)
collect_metrics(___)
Note: ROC AUC compares the relation between True Positive Rate and False Positive Rate, while Accuracy is simply the percentage of correct predictions. In both cases, a higher AUC and higher accuracy are better. Generally you are also looking for your AUC to be above 0.5, as 0.5 is the equivalent of a coin flip.
Now, try a different, simpler model: predict
advfront
from only polviews
and
educ
. Specifically,
gss16_rec_2
),gss16_wflow_2
),collect_metrics()
.Comment on which model performs better (one including
wrkstat
, model 1, or the one excluding
wrkstat
, model 2) on the training data based on area under
the ROC curve.
Fit both models to the testing data, plot the ROC curves for the predictions for both models, and calculate the areas under the ROC curve. Does your answer to the previous exercise hold for the testing data as well? Explain your reasoning. Note: If you haven’t yet done so, you’ll need to first train your workflows on the training data with the following, and then use these fit objects to calculate predictions for the test data.
<- gss16_wflow_1 %>%
gss16_fit_1 fit(gss16_train)
<- gss16_wflow_2 %>%
gss16_fit_2 fit(gss16_train)
🧶 ✅ ⬆️ Knit, commit, and push your changes to GitHub with an appropriate commit message. Make sure to commit and push all changed files so that your Git pane is cleared up afterwards.
In 2016, the GSS added a new question on harassment at work. The question is phrased as the following.
Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse?
Answers to this question are stored in the harass5
variable in our dataset.
Yes
and
No
answers for the harassment question. How many responses
chose each of these answers?🧶 ✅ ⬆️ Knit, commit, and push your changes to GitHub with an appropriate commit message. Make sure to commit and push all changed files so that your Git pane is cleared up afterwards and review the md document on GitHub to make sure you’re happy with the final state of your work.