Description Usage Format Details Source Examples
The data relate to the distribution of horse mackerel (meh
, Trachurus trachurus) eggs and mackerel (med
, Scomber scombrus) eggs and were collected as part of the 2010 mackerel survey aimed at assessing the mackerel spawning stock biomass using the daily egg production method.
1 2 |
A data frame with the following columns. Each row corresponds to one sample of eggs.
The number of stage I eggs in this sample.
sample station latitude
sample station longitude
volume of water sampled
surface temperature in centigrade
temperature at x metres depth.
Second temperature measurements.
Salinity at 20m depth
seabed depth in metres for med
only.
The longitude of the sample station in degrees east.
The latitude of the sample station in degrees north.
The time of day (in hours) at which the sample was taken.
The salinity (saltiness) of the water at the sampling location.
sampling period
Country responsible for sample
Vessel ID
sample data and time
Sample ID
type of sampling gear used
The remaining fields are undocumented.
The original data files do not always exactly match the file documentation, so these data should not be treated as definitive.
ICES Eggs and Larvae Dataset 2012, ICES, Copenhagen
http://eggsandlarvae.ices.dk/Download.aspx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | require(gamair)
par(mfrow=c(1,2))
data(meh);data(med);data(coast)
# plot the egg counts against location
plot(meh$lo,meh$la,cex=0.2+meh$count^.5/10,col="grey",
pch=19,xlab="lo",ylab="la",main="horse mackerel")
ind <- meh$count==0
points(meh$lo[ind],meh$la[ind],cex=0.1,pch=19)
lines(coast)
# same for med
plot(med$lo,med$la,cex=0.2+med$count^.5/10,col="grey",
pch=19,xlab="lo",ylab="la",main="mackerel")
ind <- med$count==0
points(med$lo[ind],med$la[ind],cex=0.1,pch=19)
lines(coast)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.