Re: [R] graphing regression coefficients and standard errors

2008-07-28 Thread Mark Difford
Hi Murali, >> I am interested in plotting my regression analysis results(regression >> coefficients and >> standard errors obtained through OLS and Tobit models) in the form of >> graphs. plot(obj$lm) will give you a set of diagnostic plots. What you seem to be after is ?termplot. Also look at

Re: [R] graphing regression coefficients and standard errors

2008-07-27 Thread Ritwik Sinha
Hi Murali, The plot function works on an "lm" object. The example from the help page of lm. Ritwik ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14) trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69) group <- gl(2,10,20, labels=c("Ctl","Trt")) weight <- c(ctl, trt) anova(lm.D9

[R] graphing regression coefficients and standard errors

2008-07-25 Thread Murali K
Hello, I am interested in plotting my regression analysis results(regression coefficients and standard errors obtained through OLS and Tobit models) in the form of graphs.What is the best way to accomplish this? Thanks. Murali Kuchibhotla [[alternative HTML version deleted]] ___