data(aemet)
..$df:
Dataframe with information of each wheather station:
ind:
{ Indicated weather station.
}
name:
{ Station Name. 36 marked UTF-8 strings
}
province:
{ Province (region) of Spain. 36 marked UTF-8 strings
}
altitude:
{ Altitude of the station (in meters).
}
year.ini:
{ Start year.
}
year.end:
{ End year.
}
longitude:
{ x geographic coordinate of the station (in decimal degrees) .
}
latitude:
{ y geographic coordinate of the station (in decimal degrees) .
}
The functional variables:
...$temp
: mean curve of the average daily temperature for the period 1980-2009 (in degrees Celsius, marked with UTF-8 string).
...$wind.speed
: mean curve of the average daily wind speed for the period 1980-2009 (in m/s).
...$logprec
: mean curve of the log precipitation for the period 1980-2009 (in log mm).iconv
.
In leap years temperatures for February 28 and 29 were averaged.
Negligible precipitation (less than 1 tenth of mm) is replaced by 0.05
and
no precipitation (0.0 mm) is replaced by 0.01
. Then the logarithm is applied.data(aemet)
names(aemet)
names(aemet$df)
par(mfrow=c(3,1))
plot(aemet$temp)
plot(aemet$wind.speed)
plot(aemet$logprec)
Run the code above in your browser using DataLab