search for: adjfit

Displaying 1 result from an estimated 1 matches for "adjfit".

2008 Jul 25
1
extracting Pr>ltl from robcov/ols (Design)
...a rotation to do on the topics, I'd like to have the results pumped into a nice table. answer<-robcov(ols(emotion ~ topic,x=TRUE,y=TRUE),individual) >From the robcov help it warns me: >Adjusted ols fits do not have the corrected standard errors printed with print.ols. Use sqrt(diag(adjfit$var)) to get this, where adjfit is the result of robcov. So I can get to the standard error by: answer.se<-sqrt(diag(answer$var)) I can get to the coefficients by: answer.co<-coefficients(answer) I can get to the t-values by: answer.t<-coefficients(answer)/ sqrt(diag(answer$var))#t-v...