metal.df: Metal Removal

Description Usage Format Examples

Description

Data from an experiment to measure the rate of metal removal in a machining process on a lathe

Usage

1

Format

A data frame with 15 observations on the following 3 variables:

hardness

hardness of the material being machined

setting

speed setting of the lathe (fast, medium or slow

rate

rate of metal removal (response)

Examples

1
2
3
4
data(metal.df)
med <-ifelse(metal.df$setting=="medium", 1,0)
slow<-ifelse(metal.df$setting=="slow", 1,0)
summary(lm(rate~med + slow + hardness, data=metal.df))

R330 documentation built on May 2, 2019, 2:12 p.m.