Learn R Programming

DAAG (version 0.37)

monica: WHO Monica Data

Description

The monica data frame has 6357 rows and 12 columns. Note that mifem is the female subset of this data frame.

Usage

data(monica)

Arguments

source

Newcastle (Australia) centre of the Monica project; see the web site http://www.ktl.fi

Examples

Run this code
data(monica)

print("CART - Example 10.7")
summary(monica)
pause()

require(rpart)
monica.rpart <- rpart(outcome ~ ., data = monica, cp = 0.0025)
plotcp(monica.rpart)
printcp(monica.rpart)
pause()

monicab.rpart <- prune(monica.rpart, cp=0.006)
print(monicab.rpart)

Run the code above in your browser using DataLab