sole {gamair} | R Documentation |
Data on Sole Egg densities in the Bristol Channel (West Coast of England, UK.) The data are from 5 research cruises undertaken for the purpose of measuring Sole egg densities. Samples were taken at each of a number of sampling stations, by hauling a net vertically through the water column. Sole eggs were counted and assigned to one of four developmental stages.
data(sole)
A data frame with 7 columns and 1575 rows. The columns are:
Dixon (2003)
Dixon, C.E. (2003) Multi-dimensional modelling of physiologically and temporally structured populations. PhD thesis. University of St Andrews
Horwood, J. (1993) The Bristol Channel Sole (solea solea (L.)): A fisheries case study. Advances in Marine Biology 29, 215-367
Horwood, J. and M. Greer Walker (1990) Determinacy of fecundity in Sole (solea solea) from the Bristol Channel. Journal of the Marine Biology Association of the United Kingdom. 70, 803-813.
Wood (2006) Generalized Additive Models: An Introduction with R. CRC
data(sole) data(coast) par(mfrow=c(2,3)) sample.t <- unique(sole$t) stage <- 1 for (i in 1:5) { egg<-sole[sole$stage==stage&sole$t==sample.t[i],] plot(egg$lo,egg$la,xlab="lo",ylab="la",main=paste("day",sample.t[i]),cex=egg$eggs/4, xlim=range(sole$lo),ylim=range(sole$la),cex.axis=1.5,cex.lab=1.5,cex.main=1.5) points(egg$lo,egg$la,pch=".",col=2) lines(coast) }