Generalized Linear Model Part 3

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

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Binary Logistic Regression

Models the odds for “success” for response variable y depend on a set of exploratory variables

2
New cards

Confusion Matrix

Summarizes the performance of a binary classifier by comparing predicted labels to the actual labels of the data

3
New cards

TP or True Positive

Correctly predicted as Positive

4
New cards

TN or True Negative

Correctly predicted as Negative

5
New cards

FP or False Positive

Incorrectly predicted as Positive

6
New cards

FN or False Negative

Incorrectly predicted as Negative

7
New cards

Default Confusion Matrix

knowt flashcard image
8
New cards

Accuracy

Measures of overall correctness of the classifier

Proportion of correctly classified instances over the total number of instances

<p>Measures of overall correctness of the classifier</p><p></p><p>Proportion of correctly classified instances over the total number of instances</p>
9
New cards

Precision

Measures overall accuracy of positive predictions made by the classifier

Of all the instances classified as positive, how many were genuinely positive?

<p>Measures overall accuracy of positive predictions made by the classifier</p><p></p><p>Of all the instances classified as positive, how many were genuinely positive?</p>
10
New cards

Sensitivity

True Positive Rate

Identify all the positive instances

Of all the positive instances in the dataset, how many did the classifier identify correctly?

<p>True Positive Rate</p><p>Identify all the positive instances</p><p>Of all the positive instances in the dataset, how many did the classifier identify correctly?</p>
11
New cards

Specificity

True Negative Rate

Identify all the negative instances

Of all the negative instances in the dataset, how many did the classifier correctly identify

<p>True Negative Rate</p><p>Identify all the negative instances </p><p>Of all the negative instances in the dataset, how many did the classifier correctly identify</p>
12
New cards

False Positive Rate (FPR)

Fall Out

Negative instances that were incorrectly classified as positive

avoid false alarms in negative instances

<p>Fall Out</p><p>Negative instances that were incorrectly classified as positive</p><p>avoid false alarms in negative instances</p>
13
New cards

False Negative Rate (FNR)

Miss Rate

The proportion of Positive instances that were classified as negative

avoid missing positive instance

<p>Miss Rate</p><p>The proportion of Positive instances that were classified as negative</p><p>avoid missing positive instance</p>
14
New cards

Positive Predicted Value (PPV)

Accuracy of positive prediction

Same Formula with PRECISION

<p>Accuracy of positive prediction </p><p>Same Formula with PRECISION </p>
15
New cards

Negative Predicted Value (NPV)

Precision for the negative class

Accuracy of negative predictions, specifically.

<p>Precision for the negative class</p><p>Accuracy of negative predictions, specifically.</p>
16
New cards

Matthew Correlation Coefficient (MCC)

Least influenced by imbalanced ness
All four components of confusion Matrix

Ranges from -1 to +1

  • +1 = Represent a perfect classifier

  • 0 = indicates a random classifier

  • -1 = Denotes a classifier that performs exactly the opposite to the desired behavior

Higher value = Better Classifier

<p>Least influenced by imbalanced ness<br>All four components of confusion Matrix</p><p></p><p>Ranges from -1 to +1</p><ul><li><p>+1 = Represent a perfect classifier</p></li><li><p>0 = indicates a random classifier </p></li><li><p>-1 = Denotes a classifier that performs exactly the opposite to the desired behavior</p></li></ul><p></p><p>Higher value = Better Classifier</p><p></p><p></p>
17
New cards

Cohen’s Kappa Statistic

Insight on gain using a model

Designed model’s reliability in terms of agreement

18
New cards

Youden’s J statistic

probability of an informed decision

A value of 1 indicates that there are no false positives or false negatives; the model is Perfect

<p style="text-align: justify">probability of an informed decision</p><p>A value of 1 indicates that there are no false positives or false negatives; the model is Perfect</p>
19
New cards

Receiver Operating Characteristic (ROC) Curve

plotting Sensitivity against FPR or Fall-Out

20
New cards

Area Under the ROC Curve (AUC)

probability that a model ranks a random positive example more highly

21
New cards
22
New cards