Hi everyone,
                  I am fitting a simple linear regression model in R. My
command is j=lm( Y ~ Sex + begsal + time + int)
Call:
lm(formula = Y ~ Sex + begsal + time + int)

Coefficients:
(Intercept)          Sex       begsal         time          int
    191.916     -241.805        3.969        5.003        3.040
Now I wish to access the values of these coefficients for other purposes
and all this I need to be done within a code. Using
j$coefficients["(Intercept)"] gives me
(Intercept)
   191.9161
How can I get just the value 191.9161?
Please help.

Thanks,
Pragya

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to