Displaying 1 result from an estimated 1 matches for "p1sum".
Did you mean:
x1sum
2006 Jul 16
1
Hmisc xYplot
...than one data
trend in the same panel, much as I would use xyplot from package
lattice in conjunction with superpose, with type="b". My problem is I
can't get the error bars to plot when I use xYplot this way. I've
attached my data set for reference.
Here are my inputs:
>p1sum<-read.csv(file="p1sum.csv", header=T)
>library(Hmisc)
>xYplot(Cbind(DRP, SE) + Cbind(Fe, FeSE) ~ Day | Group + Port, p1sum,
type='b')
The plotted result is two lines per panel, one labeled "Cbind(DRP, SE)"
and the other labeled "Cbind(Fe, FeSE). Howev...