Skip to content
Prev 257781 / 398502 Next

statistic Q

Hi Shatha,

There is a function built into the core packages that lets you easily
extract coefficients.  See the documentation for ?coef
For the standard errors, you can extract them from a model object
yourself, but that can be a bit of a pain.  An alternative is to use
se.coef from package "arm".

install.packages("arm")
require(arm)
?se.coef

As to how you actually do the calculations once you have the needed
data, that is up to you.

HTH,

Josh
On Fri, Apr 22, 2011 at 3:30 PM, Shatha Omar <shathaomar2 at gmail.com> wrote: