Re: [R] About "Plot.new"

2012-06-03 Thread Uwe Ligges
Perhaps not at all, since you are posting to the R-help list rather than to the original poster of the question. You also forgot to quote the original question as the posting guide asks you to do. Uwe Ligges On 03.06.2012 08:12, czar wrote: @mr.parashar4 - If this not resolved yet, here is

Re: [R] About "Plot.new"

2012-06-02 Thread czar
@mr.parashar4 - If this not resolved yet, here is what can help plot.new is trying to create a new object out of the standard point plot. I believe you have not created a standard point plot, i.e. in your case, plot(xm,ym). This will show the graphical plot window. Keep that window open and then ru

Re: [R] About "Plot.new"

2008-09-11 Thread Marc Schwartz
on 09/11/2008 05:41 PM cathelf wrote: > Hi, sorry for bothering your guys. > I will trying to make some nice graph using boxplot. when I check the help > file of boxplot, there is a sample code as: > > boxplot(len ~ dose, data = ToothGrowth, add = TRUE, > boxwex = 0.25, at = 1:3 + 0

Re: [R] About "Plot.new"

2008-09-11 Thread Adam D. I. Kramer
You can't add=TRUE unless the graph exists in the first place. So, drop that if you're creating the graph. Or if that's there because you want to put a boxplot on top of a preexisting graph, make sure you have created the preexisting graph already. --Adam On Thu, 11 Sep 2008, cathelf wrote: H

[R] About "Plot.new"

2008-09-11 Thread cathelf
Hi, sorry for bothering your guys. I will trying to make some nice graph using boxplot. when I check the help file of boxplot, there is a sample code as: boxplot(len ~ dose, data = ToothGrowth, add = TRUE, boxwex = 0.25, at = 1:3 + 0.2, subset = supp == "OJ", col = "or