strength {mdscore} | R Documentation |
Impact Strength an Insulating Material
Description
The dataset is a subsample of the 5 x 2 factorial experiment given by Ostle and Mensing (1963).
Usage
data(strength)
Format
A data frame with 30 observations on the following 3 variables.
cut
type of specimen cut.
lot
lof of the material –
I
,II
,III
,IV
andV
.y
observations of the impact strength.
Source
Ostle B, Mensing RW (1963). Statistics in Research: Basic Concepts and Techniques for Research Workers. Iowa State University.
Examples
data(strength)
fitf <- glm(y ~ cut * lot, data = strength,family = inverse.gaussian("inverse"))
summary(fitf)
X <- model.matrix(fitf, data = strength)
fit0 <- glm(y ~ cut + lot, data = strength, family = inverse.gaussian("inverse"))
test <- mdscore(fit0, X1=X[, 7:10])
summary(test)
[Package mdscore version 0.1-3 Index]