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) write.csv(c(mylogit$coefficients), file="result.csv") write.csv(I(summary(mylogit)), file="result.csv", append=T) #neither does this shows Pr(>|z|)
Hi Chua, delim.table in the prettyR package might do what you want. Jim ______________________________________________ [email protected] 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.

