Displaying 1 result from an estimated 1 matches for "coeffienct".
Did you mean:
coeffient
2011 Aug 15
2
Extracting information from lm results (multiple model runs)
...y(lm)$r.squared)
> > names(out) <-
> > c("intercept","slope","slope.SE","p.value","r.squared")
> > return(out)
> > }
> >
> > #create empty list
> > results <- list()
> > #get coeffiencts for all model runs into list: results
> > for (i in 1:length(mod)) results[[names(mod)[i]]] <-
> > All_Model_runs(mod[[i]])
> >
> >
> > Now my questions you might probably be able to answer:
> >
> > 1) Is that so far good what I was doing (according to...