random.shortonly(rportfolios)
random.shortonly()所属R语言包:rportfolios
Random short only portfolio
随机短的只有投资组合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function generates a vector of investment weights for a portfolio where the weights are non-positive, absolute weights do not exceed a given upper and and the sum of the absolute weights weights is a given total. The number of non zero positions in the portfolio is k.
这个函数生成一个投资的权重向量的组合的权重都非正,绝对重量不超过给定的上部和绝对的权重的权重的总和是一个给定的总。在投资组合中的非零位置的数目为k。
用法----------Usage----------
random.shortonly(n = 2, k = n, x.t = 1, x.l = 0,
x.u = x.t, max.iter = 1000)
参数----------Arguments----------
参数:n
A positive integer value for the number of investments in the portfolio
投资组合中的一个正整数的值
参数:k
A positive integer value for the number of non zero weights
非零权的数量正整数值
参数:x.t
A positive numeric value for the sum of the absolute value of investment weights
正数值的投资权重的绝对值的总和
参数:x.l
A positive numeric value for the lower bound on the absolute value of investment weights
一个正数的绝对值的投资权重值的下限
参数:x.u
A positive numeric value for the upper bound on the absolute value of investment weights
一个正数的绝对值的投资权重值的上限
参数:max.iter
A positive integer value for the maximum iterations in the rejection method
一个正整数的值将被拒绝的最大迭代方法
Details
详细信息----------Details----------
The function random.longonly is used to generate a long only portfolio that satisfies the lower bound, upper bound and sum of weight conditions. The value returned is a vector with the opposite signs.
的功能random.longonly用于生成一个长的唯一组合,满足下限,上限和总和重量条件。返回的值是一个向量,相反的迹象。
值----------Value----------
An n \times 1 numeric vector of investment weights for the short only portfolio.
数字只有短期投资组合的投资权重向量n \times 1。
(作者)----------Author(s)----------
Frederick Novomestky <a href="mailto:fnovomes@poly.edu">fnovomes@poly.edu</a>
参见----------See Also----------
random.longonly
random.longonly
实例----------Examples----------
###[##]
### generate short only portfolio of 30 investments with 30 non-zero positions[##生成短的只有30投资组合与30个非零位]
###[##]
x <- random.shortonly( 30 )
###[##]
### generate short only portfolio of 30 investments with 10 non-zero positions[##生成短的只有30投资组合与10个非零位]
###[##]
y <- random.shortonly( 30, 10 )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|