Learn R Programming

SMPracticals (version 1.3-1)

venice: Extreme Sea Levels at Venice

Description

The ten highest annual sea levels (cm) at Venice, from 1887--1981.

Usage

data(venice)

Arguments

source

Pirazzoli, P. A. (1982) Maree estreme a Venezia (periodo 1872--1981). Acqua Aria, 10, 1023--1039.

Details

There are missing values in 1922 and 1935.

References

Davison, A. C. (2003) Statistical Models. Cambridge University Press. Page 162.

Examples

Run this code
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)

Run the code above in your browser using DataLab