计算 SAS 中的复合回报
我有一个日期(每月)、人员和回报(每月)的数据集。我需要计算每个人从 t 年 4 月到 t+1 年 3 月的数据集的复合月回报。 例如,
年度申报表人员 A= 第 1 年 4 月* 第 1 年 5 月*......*第 2 年 3 月。
我可以知道如何在 SAS 中执行此操作吗?我需要一个数组吗?
I have a dataset of date(monthly), person and return(monthly). I need to calculate the compounded monthly return of the dataset from April Year t to March Year t+1 for each person.
For example,
Annual return Person A= April Year 1* May Year 1*......*March Year 2.
Can I know how can I do that in SAS? Do I need an array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
意思是您的数据集看起来像
Date 、 Person 、 Return
"01Apr2009"d 、 A 、 1.1
等
?
您的
Do you mean your dataset looks like
Date , Person , Return
"01Apr2009"d , A , 1.1
etc
etc
?