Hey, i need to do this and i dont know why in the last lm function it than says NA and NaN, i got a couple more of these to do, with the same problem. Do anyone know whats wrong or can help me solve this?
Thanks
Phorthax
WP1Aff <- c(9.333333333,
20.93333333,
25.66666667,
23,
22,
25.33333333,
19.33333333,
20.33333333,
23.66666667,
16
)
V1M <- c(15,15,15,15,14,14,14,14,14,14)
model <- lm(V1M ~ WP1Aff)
summary(model)
V1W <- c(12,12,12,12,12,12,12,12,12,12)
model <- lm(V1W ~ WP1Aff)
summary(model)
WP2Aff <- c(13.66666667,
21.6,
23.53333333,
21.83333333,
20.8,
19.8,
17.66666667,
28.2,
18.06666667,
16
)
V2M <- c(10,10,10,10,10,10,10,10,10,10)
model <- lm(V2M ~ WP2Aff)
summary(model)
V2W <- c(11,11,11,11,11,11,11,11,11,11)
model <- lm(V2W ~ WP2Aff)
summary(model)