On 17.07.2011 14:36, h_bumann wrote:
The par(new = TRUE)-Trick seems to be fine, if you just want to add one or
two other lines.
Whenever I plot a couple of graphs ontop of each other i find that the nice
vectorgraphics become cluttered.
Is there any way to use plotmeans() and to restrict it t
The par(new = TRUE)-Trick seems to be fine, if you just want to add one or
two other lines.
Whenever I plot a couple of graphs ontop of each other i find that the nice
vectorgraphics become cluttered.
Is there any way to use plotmeans() and to restrict it to the line only?
Sincerly
Henning
--
Vi
Thanks a lot.
?HTH :)
Regards,
Cheba
2010/6/28 Jannis
> Try adding
>
> par(new=TRUE)
> after plotting the first plot and then just plot the second one. You have
> to make sure that both use the same y axis but I will leave it to you to
> find out how ;-) (I would fix the y limits of both plots
Try adding
par(new=TRUE)
after plotting the first plot and then just plot the second one. You
have to make sure that both use the same y axis but I will leave it to
you to find out how ;-) (I would fix the y limits of both plots...)
HTH
Jannis
cheba meier schrieb:
Hello,
I am using
lib
Hello,
I am using
library(gplots)
to do something like
data(state)
x1 <- state.area/1
x2 <- x1+round((rnorm(length(state.area),3,3)))
plotmeans(x1 ~ state.region)
Is it possible to plot x2 to x1 in the same graph, something like:
linesmeans(x2 ~ state.region)
Best wishes,
Cheba
Is there a way to use plotmeans function of Gplots in a trellis view with the
trellis groups defined by a column?
--
View this message in context:
http://r.789695.n4.nabble.com/plotmeans-in-trellis-view-tp2065860p2065860.html
Sent from the R help mailing list archive at Nabble.com.
I'm not sure about "plotmeans" but this is usually the way I plot means with
lattice:
library(lattice)
x <- runif(48, 2, 70)
data <- data.frame(x)
data$factor1 <- factor(c("A", "B", "C", "D"))
data$factor2 <- factor(c("X", "Y", "Z"))
data.mean <- with(data, aggregate(data$x, by=list(factor1=fact
Try plotmeans in the gplots package.
On Tue, Jun 10, 2008 at 5:14 PM, stephen sefick <[EMAIL PROTECTED]> wrote:
> I can not seem to get a ylim argument into plotMeans() is there anyway to do
> this.
> thanks in advance
>
> Stephen
>
> --
> Let's not spend our time and resources thinking about thin
I can not seem to get a ylim argument into plotMeans() is there anyway to do
this.
thanks in advance
Stephen
--
Let's not spend our time and resources thinking about things that are so
little or so large that all they really do for us is puff us up and make us
feel like gods. We are mammals, and
9 matches
Mail list logo