On Tue, 17 Jun 2008, Chua Siang Li wrote:


  Hello there.  I am new to R.
  I want to output the coefficients and their significance value (Pr(>|z|)
  into a csv file.  I managed to do it for the "coefficients" but not their
  significances.  Pls help.  Thanks.
  mylogit<-      glm(response~price,      family=binomial(link="logit"),
  na.action=na.pass)
  summary(mylogit)

Try

        write.csv( coef( summary( mylogit ) ), <etc> )

HTH,

Chuck

  write.csv(c(mylogit$coefficients), file="result.csv")
  write.csv(I(summary(mylogit)), file="result.csv", append=T)  #neither does
  this shows Pr(>|z|)
______________________________________________
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.


Charles C. Berry                            (858) 534-2098
                                            Dept of Family/Preventive Medicine
E mailto:[EMAIL PROTECTED]                  UC San Diego
http://famprevmed.ucsd.edu/faculty/cberry/  La Jolla, San Diego 92093-0901

______________________________________________
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