Displaying 1 result from an estimated 1 matches for "dpau1".
Did you mean:
dpa1
2011 Jun 15
2
plot with two y axes BUT unaligned x axis
.... I would like to align them. My code is:
####
CollectionDate<-as.Date(CollectionDate,"%m/%d/%Y") # days that had
collections
release.date.Total<-as.Date(release.date.Total,"%m/%d/%Y") # days that had
releases
par(mar=c(5,4,4,4)+0.1)
plot(CollectionDate[data$Trap=="DPAU1"],TotalP[data$Trap=="DPAU1"],type="n",ylim=c(0,80),xlab="Time",ylab="Number
of egg masses") # I am using one trap of many
lines(CollectionDate[data$Trap=="DPAU1"],TotalP[data$Trap=="DPAU1"],lwd=2)
par(new=T)
plot(release.date.Total...