Re: [R] Plot and Boxplot in the same graph

2009-03-23 Thread Greg Snow
r-help-boun...@r-project.org [mailto:r-help-boun...@r- > project.org] On Behalf Of johnhj > Sent: Sunday, March 22, 2009 5:18 AM > To: r-help@r-project.org > Subject: Re: [R] Plot and Boxplot in the same graph > > > I tried to do it with: > > > y <- rnorm(100) > &

Re: [R] Plot and Boxplot in the same graph

2009-03-22 Thread johnhj
I tried to do it with: > y <- rnorm(100) > x <- gl(2,50) > boxplot(x,y) > points(x,y) But the problem is, that the the y coordinates are shown for the boxplot and not for "points(x,y)" Is it possible to show the graph with the (x,y) coordinates with the points() function and the boxplots only fo

Re: [R] Plot and Boxplot in the same graph

2009-03-21 Thread JiHO
On 2009-March-20 , at 23:02 , johnhj wrote: Is it possible, to use the plot() funktion and the boxplot() funktion together ? I will plot a simple graph and additionally to the graph on certain places boxplots. I have imagined to plot the graph a little bit transparency and show in the same

Re: [R] Plot and Boxplot in the same graph

2009-03-21 Thread Tal Galili
Hi there. Try the "add parameter" in boxplot: add logical, if true *add* boxplot to current plot. On Sat, Mar 21, 2009 at 5:02 AM, johnhj wrote: > > Hii, > > Is it possible, to use the plot() funktion and the boxplot() funktion > together ? > I will plot a simple graph and additionally to t

Re: [R] Plot and Boxplot in the same graph

2009-03-20 Thread Paul Johnson
On Fri, Mar 20, 2009 at 10:02 PM, johnhj wrote: > > Hii, > > Is it possible, to use the plot() funktion and the boxplot() funktion > together ? > I will plot a simple graph and additionally to the graph on certain places > boxplots. I have imagined to plot the graph a little bit transparency and >