On 13.06.2012 17:57, Luigi wrote:
Dear all,

I would like to ask if it possible to draw a median line in a Stripchart,
either using the built-in STRIPCHART function or with another package.

I was expecting stripchart() to work more or less like boxplot(), but I
couldn't find an easy way to draw a mean or median line, neither I found
this option in other packages.

Could somebody help?

???

What about:

x <- rnorm(100)
stripchart(x)
abline(v=median(x))


Uwe Ligges




Best regards,



Luigi Marongiu, MSc




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

______________________________________________
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