paasche.index.number {IndexNumber} | R Documentation |
Calculate the Paasche index number
Description
This function determines the Paasche index number for those cases in which there exist more than an only product.
Usage
paasche.index.number(x, y, name, opt.plot = FALSE, opt.summary = FALSE)
Arguments
x |
Matrix that contains the magnitude(s) under study. In each column, it contains the magnitude of a different product considered. Thus, we have |
y |
Matrix that contains that magnitude used as weight. In each column, it contains another magnitude associated to each different product along the time. Thus, we have |
name |
Chain of characters to indicate the name of the variable under study. |
opt.plot |
Logical option to indicate if a graphical descriptiony of the index number along the different stages is required. It takes the value |
opt.summary |
Logical option to indicate if a statistical summary of the index number is required. It takes the value |
Value
Summary |
Statistical summary (optional) of the index number along the considered period. |
Agg. index number |
Table containing the values of the index number for the considered stages and the aggregate value. |
Graphical |
Graphical summary (optional) of the index number along the considered period. |
Author(s)
A. Saavedra-Nieves, P. Saavedra-Nieves
References
Paasche, H. (1874) Uber die Preisentwicklung der letzten Jahre nach den Hamburger Borsen-notirungen. Jahrb. Natl. Stat. 23, 168–178.
Examples
prices<-matrix(c(70,75,77,77,85,90,85,75,77,87,85,90,70,75,77,77,85,90),ncol=3)
weights<-matrix(c(1,1.5,0.8,1.1,1,0.9,0.7,0.8,0.6,1,1.1,0.9,1,1,0.9,1.1,0.6,0.8),ncol=3)
paasche.index.number(prices,weights,"Price",opt.plot=TRUE,opt.summary=TRUE)