venice {SMPracticals} | R Documentation |
The ten highest annual sea levels (cm) at Venice, from 1887–1981.
data(venice)
A data frame with 95 observations on the following 11 variables.
There are missing values in 1922 and 1935.
Pirazzoli, P. A. (1982) Maree estreme a Venezia (periodo 1872–1981). Acqua Aria, 10, 1023–1039.
Davison, A. C. (2003) Statistical Models. Cambridge University Press. Page 162.
data(venice) attach(venice) y <- y1[year>1930] # for analysis in Section 5 of Davison (2003) x <- year[year>1930]-1956 plot(x+1956,y,ylab="Sea level (cm)",xlab="Year") lm(y~x)