What to examine when assessing the bivariate relationship between a Factor predictor variable and a binary target variable? - Answer A table to asses (with rows as factor levels) the mean probabilities, counts of observations of each factor, and counts of each observation of each binary target.
...
SOA PA Exam Questions And Already
Passed Answers.
What to examine when assessing the bivariate relationship between a Factor predictor variable and a
binary target variable? - Answer A table to asses (with rows as factor levels) the mean probabilities,
counts of observations of each factor, and counts of each observation of each binary target.
What to examine when assessing the bivariate relationship between a Continuous predictor variable and
a binary target variable? - Answer - A graph with separate histograms for a continuous variable, one for
those with target binary = 0 and one for those with binary = 1;
- Box plots summarized based on binary target;
- Tables summarizing the mean, median, and count of the predictor based on each binary target
What to examine when assessing the bivariate relationship between a Factor predictor variable and a
Continuous target variable? - Answer Box Plots and tables summarizing the mean, median, and count
of the target based on each factor
What to examine when assessing the bivariate relationship between a Continuous predictor variable and
a Continuous target variable? - Answer Scatter plots. Correlation between each variable [cor() in R].
What to examine when assessing (univariate analysis) a Continuous predictor variable? - Answer Assess
the histogram of the distribution. Check the skewness (does it need to have a log transformation).
- Check for extreme (unreasonable) outliers
- Check for obvious errors in data
- Check for obvious duplicates
What to examine when assessing (univariate analysis) a Factor predictor variable? - Answer Assess Bar
chart. (Count of observations per factor level)
What data questions should be considered while reading the project statement? - Answer Is the
project statement more interested in interpretable models or more accurate complicated models?
What type of variable is the target variable?
,What type of variable are the predictor variables?
Are there any outliers that need to be removed?
Are there any Factor variables that could be combined?
R-Code; remove a variable from the dataframe. - Answer df$variable <- NULL
R-Code; Create training and testing sets. - Answer set.seed(n)
train_ind <- createDataPartition(df$Target, p = 0.7, list = FALSE)
data.train <- df[train_ind, ]
data.test <- df[-train_ind, ]
What type of data to use a log transformation? - Answer Right Skewed (common with variables of
Time, Distance, or Money which have a lower boundary of 0)
What type of data to use a Logit transformation? - Answer Binary (boolean) Target variable
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller TestSolver9. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $10.29. You're not tied to anything after your purchase.