Learn R Programming

generalCorr (version 1.2.6)

comp_portfo2: Compares two vectors (portfolios) using stochastic dominance of orders 1 to 4.

Description

Given two vectors of portfolio returns this function calls the internal function wtdpapb to report the simple means of four sophisticated measures of stochastic dominance. as explained in Vinod (2008).

Usage

comp_portfo2(xa, xb)

Value

Returns four numbers which are averages of four sophisticated measures of stochastic dominance measurements called SD1 to SD4.

Arguments

xa

Data on returns for portfolio A in the form of a T by 1 vector

xb

Data on returns for portfolio B in the form of a T by 1 vector

Author

Prof. H. D. Vinod, Economics Dept., Fordham University, NY

References

Vinod, H. D.", "Hands-On Intermediate Econometrics Using R" (2008) World Scientific Publishers: Hackensack, NJ. (Chapter 4) https://www.worldscientific.com/worldscibooks/10.1142/12831

See Also

stochdom2

Examples

Run this code

set.seed(30)
xa=sample(20:30)#generally lower returns
xb=sample(32:40)# higher returns in xb
gp = comp_portfo2(xa, xb)#all Av(sdi) positive means xb dominates
##positive SD1 to SD4 means xb dominates xa as it should

Run the code above in your browser using DataLab