在 Sas 中计算每月每个观察的变量
一个简单的问题,我有以下类型的数据:
Ticker _ Date _ Fem Analyst(如果为真则虚拟 1) ___ 该月的变量,如 beta
AA _ 01/04/2001 _< /strong> 1 ___ 0.61
AA _ 05/04/2001 _ 1 ___ 0.62
AA _ 08/04/2001 _ 1 ___ 0.63
AA _ 01/05 /2002 _ 1 ___ 0.7
AA _ 04/05/2002 _ 1 ___ 0.71
AA _ 08/07/2002 _ 0 ___ 0.8
AA _ 07/04/2003 _ 1 ___ 0.4
等等.. 我想要收到以下内容:
股票代码 _ 日期 数量女性分析师 男性分析师数量 _ 总 ___变量
AA _ 04/2001 3 0 _ 3 ___ 0.63
AA _ 05/2002 2 < /strong> 0 _ 2 ___ 0.71
AA _ 07/2002 0 < /em> 1 _ 1 ___ 0.8
AA _ 04/2003 1 < strong> 0 _ 1 ___ 0.4
因此,计数算法允许我计算某个公司每月的女性和男性分析师数量(使用虚拟变量性别 0 或 1),并删除该月的所有观察结果,除了最近的一个(例如,对于 08/04/01,这变为 04/01,值为 0.63,这是 AA 公司 04/01 的 beta 的最新观察结果)我猜这个例子解释了这一切?
有什么想法吗?
a quick question, I have data of the following sort:
Ticker _ Date _ Fem Analyst (dummy 1 if true) ___ Variables of that month like beta
AA _ 01/04/2001 _ 1 ___ 0.61
AA _ 05/04/2001 _ 1 ___ 0.62
AA _ 08/04/2001 _ 1 ___ 0.63
AA _ 01/05/2002 _ 1 ___ 0.7
AA _ 04/05/2002 _ 1 ___ 0.71
AA _ 08/07/2002 _ 0 ___ 0.8
AA _ 07/04/2003 _ 1 ___ 0.4
and so on.. What I want to receive is the following:
Ticker _ Date Number of fem analyst Number of Male Analysts _ Total ___Variables
AA _ 04/2001 3 0 _ 3 ___ 0.63
AA _ 05/2002 2 0 _ 2 ___ 0.71
AA _ 07/2002 0 1 _ 1 ___ 0.8
AA _ 04/2003 1 0 _ 1 ___ 0.4
So a counting algorithm that allows me to count the number of female and male analyst for a certain company per month( using dummy variable gender 0 or 1) and deletes all observations for that month except the most recent one (for instance for 08/04/01 this becomes 04/01 with 0.63 which is the most recent observation for beta for 04/01 for company AA) The example explains it all I guess?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要这样的东西:
这应该给您一个总体思路 - 我现在无法访问 SAS,因此无法检查代码。有关更多详细信息,请参阅数据步骤中保留和处理的文档。
You may want something like this:
This should give you the general idea - I don't have access to SAS right now so I can't check the code. See the documentation for retain and by processing in the data step for more details.