Displaying 2 results from an estimated 2 matches for "ylim1".
Did you mean:
ylim
2000 Sep 07
3
plot with two y axes
I'm trying to make a transition from S-plus under Windows to R under
Linux. My immediate aim is to produce a scatter plot with two y-axes
with different scales. That can be done in S-plus with a command of the
following form:
guiPlot( PlotType="Scatter", DataSet="execon",
Columns="years,hstart,ship", AxisType="Multiple Y" ),
where years, hstart, and
2007 Apr 21
0
possible bug in xYplot and smean.cl.normal
...CIs : compare summarize and xYplot(method= fun)
##
# this is a part of a larger set, but the issue is the same
dat.fss <- read.csv("JMF2_141-dbdemo-FSS-FSS.csv")
summary(dat.fss$Colony_Cnt)
# fix factors
dat.fss$WellCol <- ordered(dat.fss$WellCol)
# define common scale for the y
ylim1 <- c(0,600)
require(Hmisc)
#
# smean.cl.normal
#
conf.int.1 <- 0.95
attach(dat.fss)
ci <- summarize(Colony_Cnt, llist(WellRow, WellCol, WellName, Treatment,
Scan), smean.cl.normal, conf.int=conf.int.1, na.rm=T)
detach("dat.fss")
# using summarize
xYplot(Cbind(Colony_Cnt, Lo...