## Loading the SanMartino precipitation data
data(SanMartinoPPts)
x <- SanMartinoPPts
if (FALSE) {
## Days with information per year
dwi(x)
## Days with information per month per year.
dwi(x, out.unit="mpy")
}
###########
if (FALSE) {
## Loading the monthly time series of precipitation within the Ebro River basin.
data(EbroPPtsMonthly)
## Months with information per year in the 9 first stations of 'EbroPPtsMonthly'
a <- dwi(EbroPPtsMonthly[,1:10], out.unit="years", dates=1)
## Before plotting the results in 'a', and just for obtaining a more interesting
## plot, 70 random numbers (between 1 and 11) are introduced in 'a'
a[sample(length(a), size = 70)] <- rep(1:11, length=70)
## Plotting the amount of months with information per year in each station
matrixplot(a, var.type="Days", main="Number of months with info per year")
}
Run the code above in your browser using DataLab