[R] how to combine the boxplot and dotchart together?

Peter Ehlers ehlers at ucalgary.ca
Fri Nov 6 18:37:26 CET 2009


孟欣 wrote:
> Hi all:
> Suppose there're 3 groups,and I wanna compare the result of the 3 groups.
> I've drawn a boxplot.But I wanna show the actural data points of each group at the same time.In other words I wanna combine the boxplot and dotchart together.
> How can I do it?

Perhaps like this:

   boxplot(Sepal.Length ~ Species, data = iris)
   points(Sepal.Length ~ Species, data = iris)

or, if you have overlapping points:

   points(Sepal.Length ~ jitter(rep(1:3, each=50),
                                amount=.05),
          data=iris)

  -Peter Ehlers

>  
> Thanks a lot!
>  
> My best.
> 
> 
> 	[[alternative HTML version deleted]]
> 
> ______________________________________________
> 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.
> 
>




More information about the R-help mailing list