Blignaut, M, Mej <mblig@sun.ac.za>
2012-Jun-26 13:24 UTC
[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}}
John Kane
2012-Jun-26 16:02 UTC
[R] plotting two histograms on one plot with hist function
Why not just plot the two histograms on the same scale in a 2 panel plot? John Kane Kingston ON Canada> -----Original Message----- > From: mblig at sun.ac.za > Sent: Tue, 26 Jun 2012 15:24:55 +0200 > To: r-help at 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 at 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
John Kane
2012-Jun-26 21:26 UTC
[R] plotting two histograms on one plot with hist function
Oh, I had not thought of it in those terms. It does make sense now. John Kane Kingston ON Canada -----Original Message----- From: keren at math.montana.edu Sent: Tue, 26 Jun 2012 10:57:31 -0600 To: jrkrideau at inbox.com Subject: Re: [R] plotting two histograms on one plot with hist function On Tue, Jun 26, 2012 at 10:02 AM, John Kane <[1]jrkrideau at 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: [2]mblig at sun.ac.za > Sent: Tue, 26 Jun 2012 15:24:55 +0200 > To: [3]r-help at 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}} > > ______________________________________________ > [4]R-help at r-project.org mailing list > [5]https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > [6]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 [7]http://www.inbox.com/smileys Works with AIM?, MSN? Messenger, Yahoo!? Messenger, ICQ?, Google Talk? and most webmails ______________________________________________ [8]R-help at r-project.org mailing list [9]https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide [10]http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. _________________________________________________________________ Free Online Photosharing - Share your photos online with your friends and family! Visit [11]http://www.inbox.com/photosharing to find out more! References 1. mailto:jrkrideau at inbox.com 2. mailto:mblig at sun.ac.za 3. mailto:r-help at r-project.org 4. mailto:R-help at r-project.org 5. https://stat.ethz.ch/mailman/listinfo/r-help 6. http://www.R-project.org/posting-guide.html 7. http://www.inbox.com/smileys 8. mailto:R-help at r-project.org 9. https://stat.ethz.ch/mailman/listinfo/r-help 10. http://www.R-project.org/posting-guide.html 11. http://www.inbox.com/photosharing
John Kane
2012-Jun-27 13:42 UTC
[R] plotting two histograms on one plot with hist function
-----Original Message----- From: mblig at sun.ac.za Sent: Wed, 27 Jun 2012 08:32:24 +0200 To: jrkrideau at inbox.com, keren at math.montana.edu Subject: RE: [R] plotting two histograms on one plot with hist function Thank you for all the advice! After mailing the question, I actually found a function called multhist (plotrix package) that plots two data sets (in single list) on a single histogram. Trust Jim to be there ahead of everyone! The script is as follows: #I listed to two data sets in ?long? format in a .csv file input <- read.csv(file= "list.csv", h = TRUE) library(plotrix) #to plot two data sets on one histogram multhist(input, xlab="Label?, ylab="Frequency", col=c("Red", "Green"), ylim=c(0,50)) #to add a legend to the top left corner legend("topleft", c("Dataset 1","Data set 2"), cex=0.6,bty="n", fill=c("Red","Green")) Thanks again for the help! From: John Kane [mailto:jrkrideau at inbox.com] Sent: 26 June 2012 23:27 To: ilai Cc: Blignaut, M, Mej <mblig at sun.ac.za>; r-help at r-project.org Subject: Re: [R] plotting two histograms on one plot with hist function Oh, I had not thought of it in those terms. It does make sense now. John Kane Kingston ON Canada -----Original Message----- From: keren at math.montana.edu Sent: Tue, 26 Jun 2012 10:57:31 -0600 To: jrkrideau at inbox.com Subject: Re: [R] plotting two histograms on one plot with hist function On Tue, Jun 26, 2012 at 10:02 AM, John Kane <[1]jrkrideau at 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: [2]mblig at sun.ac.za > Sent: Tue, 26 Jun 2012 15:24:55 +0200 > To: [3]r-help at 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}} > > ______________________________________________ > [4]R-help at r-project.org mailing list > [5]https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > [6]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 [7]http://www.inbox.com/smileys Works with AIM?, MSN? Messenger, Yahoo!? Messenger, ICQ?, Google Talk? and most webmails ______________________________________________ [8]R-help at r-project.org mailing list [9]https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide [10]http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. ______________________________________________________________________ Free Online Photosharing - Share your photos online with your friends and family! Visit [11]http://www.inbox.com/photosharing to find out more! _________________________________________________________________ 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 be legally privileged and is intended only for the person to whom it is addressed. If you are not the intended recipient, you are notified that you may not use, distribute or copy this document in any manner whatsoever. Kindly also notify the sender immediately by telephone, and delete the e-mail. The University does not accept liability for any damage, loss or expense arising from this e-mail and/or accessing any files attached to this e-mail. _________________________________________________________________ [12]3D Marine Aquarium Screensaver Preview Free 3D Marine Aquarium Screensaver Watch dolphins, sharks & orcas on your desktop! Check it out at [13]www.inbox.com/marineaquarium References 1. mailto:jrkrideau at inbox.com 2. mailto:mblig at sun.ac.za 3. mailto:r-help at r-project.org 4. mailto:R-help at r-project.org 5. https://stat.ethz.ch/mailman/listinfo/r-help 6. http://www.R-project.org/posting-guide.html 7. http://www.inbox.com/smileys 8. mailto:R-help at r-project.org 9. https://stat.ethz.ch/mailman/listinfo/r-help 10. http://www.R-project.org/posting-guide.html 11. http://www.inbox.com/photosharing 12. http://www.inbox.com/marineaquarium 13. http://www.inbox.com/marineaquarium