This data set gives the the number of fish species in lakes of the world; to examine the
effect of the surface area of the lakes. The latitude of the lakes are also recorded.
Usage
data(fish)
Arguments
Format
A data frame with 70 observations on 4 variables.
lake
name of the lakes
species
number of fish species in lakes
area
surface area (km squared)
latitude
latitude of the lakes
Details
This data set is also used to illustrate that the fitting algorithm can handle some
larger count data.
References
Barbour, C. D. and Brown, J. H. (1974). Fish species diversity in lakes. The
American Naturalist, 108, 473--488.
# NOT RUN {### Barbour & Brown (1974): Overdispersed Fish data# }# NOT RUN {data(fish)
M.fish <- glm.cmp(species~ 1+log(area), data=fish)
M.fish
summary(M.fish)
# }