Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Use linear discriminant analysis (LDA) to build a classification rule to classifying the Bumpus bird data into two groups (survived and died) based on the

Use linear discriminant analysis (LDA) to build a classification rule to classifying the Bumpus bird data into two groups ("survived" and "died") based on the 5 numerical measurements. Assume equal prior probabilities of surviving and dying.

The Bumpus bird data (along with a survival/death indicator vector) can be read in using the following R code:

bumpbird <- read.table("http://people.stat.sc.edu/hitchcock/bumpusbird.txt", header=T)

names(bumpbird) <- c("ID", "tot.length", "alar.length", "beak.head.length", "humerus.length", "keel.stern.length") attach(bumpbird)

bumpbird.numeric <- bumpbird[,-1] bumpbird.IDs <- bumpbird[,1]

survival.indicator <- as.factor(c(rep("survived",times=21),rep("died",length=28)))

(a) Use the LDA rule to predict the survival status for a hypothetical bird with: tot.length=156, alar.length=242, beak.head.length=31.4, humerus.length=18.1, keel.stern.length=19.4 Give the probability of surviving for such a bird.

(b) Find the plug-in misclassification rate and the cross-validation misclassification rate for the LDA classification rule.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

What is one major advantage of using PowerBI?

Answered: 1 week ago