rlongonly.test(rportfolios)
rlongonly.test()所属R语言包:rportfolios
Generate random long only portfolios
生成随机的唯一投资组合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function generates m random long only portfolios with n investments with each investment weight bounded in an interval and the sum of the weights equals a given amount. The number of non-zero positions is k. This function is used to test the algorithm that generates the random portfolios.
此函数生成m个随机长仅具有n在一个间隔中的重量总和范围内的每个投资重量投资组合等于一个给定的量。的非零位置的数目为k。此功能是用来测试的算法,该算法生成的随机组合。
用法----------Usage----------
rlongonly.test(m, n = 2, k = n, x.t = 1, x.l = 0,
x.u = x.t, max.iter = 1000)
参数----------Arguments----------
参数:m
A positive integer value for the number of portfolios
投资组合的数量正整数值
参数:n
A positive integer value for the number of investments in each portfolio
在各投资组合投资的数量正整数值
参数:k
A positive integer value for the number of non zero weights
非零权的数量正整数值
参数:x.t
A positive numeric value for the sum of investment weights
正数值的投资权重的总和
参数:x.l
A positive numeric value for the lower bound of an investment weight
一个正数的投资权重值的下限
参数:x.u
A positive numeric value for the upper bound of an investment weight
一个正数的投资权重值的上限
参数:max.iter
A positive integer value for the number of rejection iterations
用一个正整数的个数拒绝迭代
Details
详细信息----------Details----------
The function executes the function random.longonly.test using the R function lapply. The result which is a list contains the investment weight vectors and number of iterations. Thse data are stored in a matrix of investment weights and a vector of iterations. These arrays are returned as a list.
该功能执行的功能random.longonly.test使用R的功能lapply,。的结果,这是一个列表中包含的投资权重向量和迭代次数。 thse数据被存储在投资权重的矩阵和一个向量的迭代。这些数组的形式返回一个列表。
值----------Value----------
A list with two named components.
列表与两个命名的部分。
参数:xmatrix
A numerical m \times n matrix of investment weights
的数值 m \times n的投资权重矩阵
参数:iters
An integer m \times 1 vector for the number iterations used to obtain the investment weights
的整数 m \times 1向量,用于以获得的投资权重的数目的迭代
(作者)----------Author(s)----------
Frederick Novomestky <a href="mailto:fnovomes@poly.edu">fnovomes@poly.edu</a>
参考文献----------References----------
Journal of the Royal Statistical Society, Series C (Applied Statistics), 26(1), 71.
6(3), July 1964, 260-264.
参见----------See Also----------
random.longonly.test
random.longonly.test
实例----------Examples----------
###[##]
### generate 100 long only portfolios with 30 investments and 30 non-zero positions[##只产生100个投资组合的投资有30和30个非零位]
###[##]
x.result <- rlongonly.test( 100, 30 )
###[##]
### generate 100 long only portfolios with 30 investments and 10 non-zero positions[##只产生100个投资组合的投资有30和10个非零位]
###[##]
y.result <- rlongonly.test( 100, 30, 10 )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|