I searched the archives, but couldnt find any way to do this with boxplot. Is there a way? Thanks again ~BJ
BJ wrote:> I searched the archives, but couldnt find any way to do this with > boxplot. Is there a way? Thanks again ~BJSee ?boxplot and its argument par which points you to ?bxp: Now, you can do stuff like boxplot(1:10, pars=list(staplelty=0, whisklty=0)) Uwe Ligges> ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > http://www.R-project.org/posting-guide.html
Hmm ok, that seems to work with that example, but when I add an "at=" option i get graphs that are only verticle lines. Sorry to be difficult. ~BJ Uwe Ligges wrote:> BJ wrote: > >> I searched the archives, but couldnt find any way to do this with >> boxplot. Is there a way? Thanks again ~BJ > > > See ?boxplot and its argument par which points you to ?bxp: > > Now, you can do stuff like > boxplot(1:10, pars=list(staplelty=0, whisklty=0)) > > Uwe Ligges > > > >> ______________________________________________ >> R-help at stat.math.ethz.ch mailing list >> https://stat.ethz.ch/mailman/listinfo/r-help >> PLEASE do read the posting guide! >> http://www.R-project.org/posting-guide.html > > >
BJ wrote:> Hmm ok, that seems to work with that example, but when I add an "at=" > option i get graphs that are only verticle lines. Sorry to be difficult.He? So you need to pe much more precisely in this message as well! boxplot(data.frame(1:10, 2:11), at = 1:2, pars=list(staplelty=0, whisklty=0), at=1:2) works perfectly for me! People are not that happy to invest their time for helping you on bad specified problems... *REALLY*: PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html Uwe Ligges> ~BJ > > Uwe Ligges wrote: > >> BJ wrote: >> >>> I searched the archives, but couldnt find any way to do this with >>> boxplot. Is there a way? Thanks again ~BJ >> >> >> >> See ?boxplot and its argument par which points you to ?bxp: >> >> Now, you can do stuff like >> boxplot(1:10, pars=list(staplelty=0, whisklty=0)) >> >> Uwe Ligges >> >> >> >>> ______________________________________________ >>> R-help at stat.math.ethz.ch mailing list >>> https://stat.ethz.ch/mailman/listinfo/r-help >>> PLEASE do read the posting guide! >>> http://www.R-project.org/posting-guide.html >> >> >> >>