在 SAS 中使用 Retain 语句进行数学运算
我有一个数据集,每人有 4 个观察值(行)。
我想创建三个新变量来计算第二行和第一行、第三行和第二行、第四行和第三行之间的差异。
我认为保留可以做到这一点,但我不确定如何做到。
或者我需要一个数组吗?
谢谢!
I have a dataset with 4 observations (rows) per person.
I want to create three new variables that calculate the difference between the second and first, third and second, and fourth and third rows.
I think retain can do this, but I'm not sure how.
Or do I need an array?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
为什么不使用滞后函数。
Why not use The Lag function.
另一种不使用数组的方法。
An alternative approach without arrays.
为什么不使用 diff() 函数呢?
Why not use the dif() function instead?