eglen@pcg.wustl.edu
2003-Mar-30 22:32 UTC
[Rd] wishlist: add log argument to stripchart (PR#2710)
I frequently use stripchart to summarise data. Recently I wished to
plot a stripchart on a log scale, so modified stripchart locally. The
change is small, just adding log="" to the function call and
then changing line 42 of src/library/base/R/stripchart.R from:
plot(xlim, ylim, type="n", ann=FALSE, axes=FALSE)
to:
plot(xlim, ylim, type="n", ann=FALSE, axes=FALSE, log=log)
Could I request this be added? If so, I'd be happy to send a patch
for the .R and .Rd files. boxplot() already offers the log argument,
so I hope this is a reasonable and useful request.