Re: [R] Add data count to plot?

2009-05-12 Thread Tal Galili
Hi Mike. In the plotting you do, there are usually parameters in the function you use to help you add text to the plot. for example: par(mfrow = c(2, 2)) plot(x, sub = text in the bottom, main = text in top, ylab = text to the side of the axis, xlab = text to the bottom of the axis) plot(y) # this

[R] Add data count to plot?

2009-05-11 Thread MikSmith
Hi I'm a relative newbie to R and had a query concerning plotting. I have generated a par(mfrow = c(2, 2)) graphic with 10 rose diagrams using circular. What I wanted to add to each individual plot was n = x for the number of data observations in each dataset. How might I go about doing this??