Logistic Regression

0.0(0)
studied byStudied by 5 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards
Dimension reduction
is genuine in that the reduced sets of selected variables are actual inputs rather than transformations of the inputs.
2
New cards
significant improvement
The forward selection terminates when no ________ can be made.
3
New cards
Variable Clustering
finds groups of inputs that are as correlated as possible among themselves and as uncorrelated as possible with variables in other clusters.
4
New cards
Odds Ratio
shows the strength of the association between the predictor variable and the response variable.
5
New cards
Logistic Regression
________ is very similar to linear regression.
6
New cards
Estimation methods
provide customized imputations for each case with missing values by training a model to predict an inputs value from other inputs.
7
New cards
Regression Analysis
Helps one understand how the typical value of the dependent variable changes when any one of the independent variables is varied, while the other independent variables are held fixed.
8
New cards
Logistic Regression
________ is used to predict the categorical dependent variable using a given set of independent variables.
9
New cards
Regression Analysis
Helps one understand how the typical value of the dependent variable changes when any one of the independent variables is varied, while the other independent variables are held fixed
10
New cards
What is the focus of regression
The focus is on the relationship between a dependent variable (i.e., Response, outcome, target) and one or more independent variables (or 'predictors‘, ‘features)
11
New cards
What is understood better with regression
Helps one understand how the typical value of the dependent variable changes when any one of the independent variables is varied, while the other independent variables are held fixed
12
New cards
Synthetic distribution methods
replacing all missing values of a variable with a fixed value
13
New cards
Estimation methods
provide customized imputations for each case with missing values by training a model to predict an inputs value from other inputs
14
New cards
Variable Redundancy
A consequence of input redundancy is model instability
15
New cards
Variable Clustering
 finds groups of inputs that are as correlated as possible among themselves and as uncorrelated as possible with variables in other clusters
16
New cards
Dimension reduction
is genuine in that the reduced sets of selected variables are actual inputs rather than transformations of the inputs
17
New cards
Exhaustive search
you try every combination
18
New cards
Restrictive search
an alternative to the exhaustive search is to restrict the search to a sequence of improving models
19
New cards
Forward selection
creates a sequence of models of increasing complexity
20
New cards
Odds Ratio
shows the strength of the association between the predictor variable and the response variable
21
New cards
Accuracy
(TRUE POSITIVES AND NEGATIVES) / (TOTAL CASES)

TP + TN / (TP + TN + FP + FN)
22
New cards
Error Rate
(FALSE POSITIVES AND NEGATIVES) / (TOTAL CASES)

FP + TN /(TP+TN+FP+FN)
23
New cards
Sensitivity(Recall)
(TRUE POSITIVES) / (TOTAL ACTUAL POSITIVES)

TP /(TP + FN)
24
New cards
Precision(Positive Predictive Value)
(TRUE POSITIVES) / (TOTAL PREDICTED POSITIVES)

TP/(TP+FP)
25
New cards
Specificity
(TRUE NEGATIVES) / (TOTAL ACTUAL NEGATIVES)

TN / (TN+FP)
26
New cards
What is logistic regression used to predict?
values of categorical variables
27
New cards
What type of problems is Logistic Regression used for to solve?
Classification
28
New cards
By finding the S-curve what are we able to accomplish?
Classifying samples
29
New cards
What must the output be for Logistic Regression?
Categorical variables
30
New cards
What is not required of Logistic Regression?
A linear relationship between the dependent and independent variables.
31
New cards
Logit Link function
a logit is defined as the log base e (log) of the odds p/(1-p) where p is the probability.
32
New cards
Logit Link function equation
log(p-hat/1-[p-hat]) = ^B0 + ^B1x1+^B2x2
33
New cards
p-hat from logit link function equation
1/1+e^-logit(^p)