xYplot has many options that are passed to panel.xYplot. Did you read the
documentation? You can suppress labels, use an automatically generated
Key() function to control where you want keys, and use several other
options. Start with label.curve=FALSE and go from there.
Frank
bwr87 wrote
> I'm
Hi Peter
As for more suggestions
library(latticeExtra)
useOuterStrips(
xyplot(prec~month|year*paste(lat,lon), data=ndata,
as.table = T,
type = c("l", "l","p"), ylim=c(min, max),
layout=c(1,4)) )
have a look at
?strip.custom and ?strip.default as well as ?useOuterStrips for
customi
I am ploting gridded time series data. I would like the actual lat and lon
value appear on the graph-if possible inside the graph as numbers. If there is
also more elegant ways to plot the graphs I will appreciate more suggestions.
#
library(ggplot2)
library(lattic
Dear R Gurus!
I would like to generate a multi-panel plot with grouped and reference lines
in each panel .. Example dataset and code are provide below. Where am I
getting wrong in the code below? Any assistance will be highly appreciated.
Thanks so much!
-Santosh
start dataset ---
X,l,
ines(x,-1.324+0.1117*x-0.0006357*x*x)
})
type='b' doesn't give me a smooth line, so it didn't produce what I want.
Thanks
John
- Original Message
From: Bert Gunter
To: array chip ; r-help@r-project.org
Sent: Thu, July 8, 2010 4:25:51 PM
Subject: RE: [R] xypl
nentech Nonclinical Statistics
> -Original Message-
> From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org]
> On Behalf Of array chip
> Sent: Thursday, July 08, 2010 3:58 PM
> To: r-help@r-project.org
> Subject: [R] xyplot help
>
> Hi, I am learning xyp
Hi, I am learning xyplot. I have an example dataset attached.
plotdata<-read.table("plotdata.txt",sep='\t',header=T,row.names=1)
head(plotdata,n=4)
y x type
1 -4.309601 -0.7448405A
2 -4.715421 0.7875994A
3 -2.310638 0.5455310A
4 -2.685803 10.4116868A
xyplot(y
Hi.. thanks for the tips.. that variation works. How can I control "pch",
"lty" and "col" for each member (gp1) in the group (paste(gp2, gp3))?
Regards,Santosh
On Tue, Jan 5, 2010 at 2:15 AM, Felix Andrews wrote:
> You should reshape the data into a long format, and an easy way to do
> that is t
You should reshape the data into a long format, and an easy way to do
that is to use the 'reshape' package:
library(reshape)
mdat <- melt(dat, measure.vars = c("y1", "y2", "y3"))
I'm still not sure what you want in the plot. Confusingly, your last
example dropped the "ID" you referred to earlier,
Thanks for your email.. Yes, I am looking for lattice version of matplot...
Attached are some codes for simplicity for rapid testing..Any suggestions
would be highly appreciated...
library(lattice)
dat <- data.frame(x = rep(1:10,2),
y1 = rnorm(20),
y2=rnorm(20,s
Hi:
I think Santosh wants a Lattice version of matplot. I didn't find anything
with help.search(), though...
Dennis
On Mon, Jan 4, 2010 at 8:14 PM, Santosh wrote:
> Hi,
> Thanks for your email..
>
> Each panel (in a multiple panel) is identified by "DS1, DS2 & DS3" in the
> dataset sent earlie
Hi
I missed the earlier emails and I am not too sure of what you want but have
a look at
requiire(latticeExtra)
? useOuterStrips
It may improve the layout and readability
Duncan Mackay
Department of Agronomy and Soil Science
University of New England
ARMIDALE NSW 2351
Email Home: mac...@nor
Hi,
Thanks for your email..
Each panel (in a multiple panel) is identified by "DS1, DS2 & DS3" in the
dataset sent earlier. I would like an overlay of Y1, Y2 & Y3 (each by
different lines) for each ID in the group. Each ID in the group is
represented by a color.
Regards & Thanks,
Santosh
On Mon,
Can you clarify how many curves you want in each panel?
You have 3 Ys and your original email indicated at least
7 ID values. Do you really want 21 curves in each panel?
Or do you want separate panels for the Ys?
Re your code: note that, regarding a formula of the
type y1 + y2 ~ x, ?xyplot says:
Hi Jim and others,
I tried suggestions and somehow the graphs do not seem to be aligned on
X-axis (i.e. they appear to be shifted on x-axis).. I guess panel.xyplot or
panel.superpose is needed? I am not sure what the "group" variable be
panel.xyplot, whether it is the "ID" or the "newFactor". I tr
I am not too sure if this is what you are after, but I just created a new
factor for the panel:
# create a new factor
d1$newFactor <- factor(paste(d1$DS1, "+", d1$DS2, "+", d1$DS3))
xyplot(Y1+Y2+Y3~X1|newFactor,data=d1,group=ID)
On Thu, Dec 31, 2009 at 6:25 AM, Santosh wrote:
> Dear R experts,
Dear R experts,
Wish you all a HAPPY NEW YEAR!
How do I go about plotting (using lattice) overlays of an ID (group=ID)
observed, fitted data in each panel of a multiple panel plot (each panel
identified by DS1 + DS2 + DS3)? "x" variable is X1 in the accompanying
section of a dataset. each individu
n you have data that groups in clusters
separated by a large range.
Aloha,
Tim
Tim Clark
Department of Zoology
University of Hawaii
--- On Mon, 9/28/09, Felix Andrews wrote:
> From: Felix Andrews
> Subject: Re: [R] xyplot help - colors and break in plot
> To: "Tim Cla
2009/9/29 Tim Clark :
> Dear List,
>
> I am new to lattice plots, and am having problems with getting my plot to do
> what I want. Specifically:
>
> 1. I would like the legend to have the same symbols as the plot. I tried
> simpleKey but can't seem to get it to work with autoKey. Right now my
Dear List,
I am new to lattice plots, and am having problems with getting my plot to do
what I want. Specifically:
1. I would like the legend to have the same symbols as the plot. I tried
simpleKey but can't seem to get it to work with autoKey. Right now my plot has
dots (pch=19) and my leg
This may be an easy question for most of you, but any prompt
clues/hints/examples would be really appreciated.
My dataset includes a various number of records (by time points) for a
variable by subject. I use xyplot to plot line/symbol graphs of the
variable at each available time point by eac
v <- factor(1:2)
xyplot(1:2 ~ 1:2 | v,
strip=strip.custom(strip.names=TRUE, sep="="))
or
v <- shingle(1:2)
xyplot(1:2 ~ 1:2 | v,
strip=strip.custom(strip.levels=TRUE, sep="="))
On Tue, Jul 22, 2008 at 4:26 PM, <[EMAIL PROTECTED]> wrote:
> I have a question about xyplot. Suppose I want to p
I have a question about xyplot. Suppose I want to plot say a response variable
y vs a predictor x within groups defined by a variable called z. And suppose I
have another variable v=1,2 with two levels. I would use the following command
to get a "spaghetti plot" with two panels defined by v.
x
23 matches
Mail list logo