search for: 9variables

Displaying 1 result from an estimated 1 matches for "9variables".

Did you mean: variables
2006 Aug 20
2
how to the p-values or t-values from the lm's results
....674 0.0975 . x5 0.18995 0.10482 1.812 0.0732 . x6 0.24832 0.10059 2.469 0.0154 * x7 -0.04425 0.11008 -0.402 0.6886 x8 0.05146 0.10290 0.500 0.6182 ------------------------------------------------------------- **the program maybe : data<-matrix(rnorm(900),ncol=9) #9variables,1dependent var,8independent data<-data.frame(data) names(data)<-c('y','x1','x2','x3','x4','x5','x6','x7','x8') logr<-lm(y~x1+x2+x3+x4+x5+x6+x7+x8-1,data) a<-summary(logr) --------------------------------------------...