requal(rportfolios)
requal()所属R语言包:rportfolios
Generate equal weighted portfolios
生成等权投资组合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function generates m random equal portfolios with k non-zero, equal weights and the sum of the weights equals x_t.
此函数生成m个随机等于具有k非零,相同的权重组合的权重的总和等于x_t。
用法----------Usage----------
requal(m, n = 2, k, x.t=1)
参数----------Arguments----------
参数:m
A positive integer for the number of portfolios in the sample
一个正整数的投资组合的样本中
参数:n
A positive integer for the number of non-zero equal weights
一个正整数的非零数相同的权重
参数:k
A positive integer for the number of investments in the portfolio
投资组合中的一个正整数
参数:x.t
A positive number for the sum of the weights
的重量总和为正数
Details
详细信息----------Details----------
The function executes the function random.equal using the R function sapply. The result returned is the transpose of the matrix generated in the previous step.
该功能执行的功能random.equalR函数sapply,。返回的结果是在先前步骤中产生的矩阵的转置。
值----------Value----------
A numeric m \times n matrix. The rows are the portfolios and the columns are the investment weights for each portfolio
一个数字m \times n矩阵。该行的投资组合和列是每个投资组合的投资权重
(作者)----------Author(s)----------
Frederick Novomestky <a href="mailto:fnovomes@poly.edu">fnovomes@poly.edu</a>
参考文献----------References----------
Journal of Finance, 23, 761-767.
Financial Analysts Journal, 31(3), 86-88.
Journal of Business, 50(4), 415-437.
Management Science, 32(2), 244-251.
Quantitative Analysis, 22, 353-363.
Financial Practice and Education, 3, 85-87.
Financial Analysts Journal, 53(2), 37-46.
Advances in Investment Analysis and Portfolio Management, 2, 227-252.
Financial Innovation, 7(1), 98-104.
参见----------See Also----------
random.equal
random.equal
实例----------Examples----------
###[##]
### generate 100 equal weighted portfolios of 30 investments with 10 non zero positions[##生成100等权30投资组合的10个非零位]
###[##]
x.matrix <- requal( 100, 30, 10 )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|