[R] multicomp plotting

2007-10-23 Thread Nair, Murlidharan T
I am trying to plot a large set of multiple comparison data from a csv file. I used to do in the following manner, but its giving me an error now, and I am not sure what correct. I have put the data in the code using the output from dput for completeness. Can anyone help me with my mistakes? Tha

[R] multicomp plotting

2009-09-24 Thread Nair, Murlidharan T
I am trying to plot my multiple comparison data. Can anyone give me some input of the error I am getting. The data and code is appended below. Thanks ../Murli library(multcomp) sig.data<-structure(list(X = 1:63, Cell.lines = structure(c(1L, 6L, 13L, 25L, 33L, 42L, 2L, 7L, 14L, 26L, 34L, 43L

Re: [R] multicomp plotting

2007-10-23 Thread Richard M. Heiberger
The multicomp package was replaced about a year ago with the multcomp package. Your sig.data can be plotted with the multcomp package with the following code. require(multcomp) tmp <- list(confint=sig.data) attr(tmp, "type") <- "none" old.oma <- par(oma=c(0,1,0,0)) multcomp:::plot.confint.glht(tm

Re: [R] multicomp plotting

2007-10-24 Thread Nair, Murlidharan T
Murlidharan T; r-help@r-project.org Subject: RE: [R] multicomp plotting The multicomp package was replaced about a year ago with the multcomp package. Your sig.data can be plotted with the multcomp package with the following code. require(multcomp) tmp <- list(confint=sig.data) attr(tmp, "type&q

Re: [R] multicomp plotting

2009-09-25 Thread Nair, Murlidharan T
suggestion. Thanks .../Murli From: r-help-boun...@r-project.org [r-help-boun...@r-project.org] On Behalf Of Nair, Murlidharan T [mn...@iusb.edu] Sent: Thursday, September 24, 2009 2:06 PM To: r-help@r-project.org Subject: [R] multicomp plotting I