On Tue, Jun 26, 2012 at 10:02 AM, John Kane <jrkrid...@inbox.com> wrote:

> Why not just plot the two histograms on the same scale in a 2 panel plot?
>

I think OP request was "for comparison". Two panels may do, but why not a
barplot of the histograms in the same panel ?

barplot( rbind(
hist(rbeta(30,2,4),breaks=seq(0,1,.1),plot=F)$counts,
hist(rbeta(30,6,8),breaks=seq(0,1,.1),plot=F)$counts),
beside=T)

see str(hist(yourdata)) or ?hist

Cheers
Ilai



> John Kane
> Kingston ON Canada
>
>
> > -----Original Message-----
> > From: mb...@sun.ac.za
> > Sent: Tue, 26 Jun 2012 15:24:55 +0200
> > To: r-help@r-project.org
> > Subject: [R] plotting two histograms on one plot with hist function
> >
> > I would like to plot two data sets (frequency (y-axis) of mean values for
> > 0-1(x=axis)) on a single histogram for comparison. The hist() only allow
> > the overlay of two histograms, and although barplot() allows beside=TRUE,
> > it does not show frequency values (like hist) but rather all of the
> > values. Is there any way that I can use the hist() to plot two data sets
> > similar to the barplot(). Any help or advice will be appreciated!
> >
> > Kind regards,
> > Marguerite
> >
> >
> >
> >
> >
> >   ________________________________
> > E-pos vrywaringsklousule
> >
> > Hierdie e-pos mag vertroulike inligting bevat en mag regtens
> > geprivilegeerd wees en is slegs bedoel vir die persoon aan wie dit
> > geadresseer is. Indien u nie die bedoelde ontvanger is nie, word u
> > hiermee in kennis gestel dat u hierdie dokument geensins mag gebruik,
> > versprei of kopieer nie. Stel ook asseblief die sender onmiddellik per
> > telefoon in kennis en vee die e-pos uit. Die Universiteit aanvaar nie
> > aanspreeklikheid vir enige skade, verlies of uitgawe wat voortspruit uit
> > hierdie e-pos en/of die oopmaak van enige l?ers aangeheg by hierdie e-pos
> > nie.
> >
> > E-mail disclaimer
> >
> > This e-mail may contain confidential information and may...{{dropped:11}}
> >
> > ______________________________________________
> > 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.
>
> ____________________________________________________________
> GET FREE SMILEYS FOR YOUR IM & EMAIL - Learn more at
> http://www.inbox.com/smileys
> Works with AIM®, MSN® Messenger, Yahoo!® Messenger, ICQ®, Google Talk™ and
> most webmails
>
> ______________________________________________
> 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.
>

        [[alternative HTML version deleted]]

______________________________________________
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