Learn R Programming

climatol (version 3.1.2)

pcp_results: Results of a monthly precipitation homogenization

Description

Results of a homogenization of monthly precipitation totals in 2001-2010.

Arguments

Format

This data set contains:

dah

Homogenized precipitations arranged in a 12x10x6 array

dat

Row precipitations arranged in a 12x10x5 array

est.c

Data frame with station's coordinates (X,Y,Z), codes and names (invented)

ini

Initial date of the time vector

nd

Number of data per series

ndec

Number of decimals of the data

ne

Number of series after the homogenization

nei

Number of series before the homogenization

nm

Number of months or number of data per year and station

std

Type of data normalization used during the homogenization

x

Time vector associated to the data

See Also

dahgrid

Examples

Run this code
# NOT RUN {
data(pcp_results)
#station information after the homogenization:
print(est.c)
#raw monthly precipitations of the third station:
print(t(dat[,,3]))
#homogenized monthly precipitations of the third station:
print(t(dah[,,3]))
#range of the dates of the data:
range(x)
#other parameters of the homogenization:
cat('First date:',ini,'\nNumber of data per station:',nd,
'\nNumber of decimals:',ndec,
'\nNumber of series before the homogenization:',nei,
'\nNumber of series after the homogenization:',ne,
'\nNumber of "months" (number of data per year and station):',nm,
'\nType of data normalization:',std,'(normal ratio)\n')
#clean memory space:
rm(est.c,dat,dah,ini,nd,ndec,ne,nei,nm,std,x)
# }

Run the code above in your browser using DataLab