my dataset looks like this in the beginning:

   Dosis weight sex
1      0    6.62          m
2      0    6.65          m
3      0    5.78          m
4      0    5.63          m
5      0    6.05          m
6      0    6.48          m
7      0    5.50          m
8      0    5.37          m
9      1    6.25          m
10     1    6.95          m
11     1    5.61          m

I've got all the box plots:
boxplot( Daten$weight~interaction(Daten$Dosis,Daten$sex, drop=TRUE)

and the points:
points(Daten$weight~interaction(Daten$Dosis,Daten$sex, drop=TRUE))

but the points are overlapping their box plots, so I tried to move all the
points next to the box plots with this:
> points( Daten$weight~interaction(Daten$Dosis,Daten$sex, drop=TRUE) + 0.2)
 but it did not work, is there any other way for this?

        [[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