SPSS:循环多个变量
我在 SPSS 中工作,有大量变量,称它们为 v1 到 v7000。
我想对每个变量执行一系列“复杂操作”以创建一组新变量:t1 到 t7000。
为了便于说明,我们就说“复杂运算”是让 t1 成为 v1 的平方,t2 成为 v2 的平方,等等。
我的想法是编写一些这样的代码。
do repeat t=t1 to t7000
compute t = v*v;
end repeat.
但是,我认为这不会起作用。
这样做的正确方法是什么?预先非常感谢。
I am working in SPSS and have a large number of variables, call them v1 to v7000.
I want to perform a series of "complex operations" on each variable to create a new set of variables: t1 to t7000.
For the sake of illustration, let's just say the "complex operation" is to have t1 be the square of v1, t2 be the square of v2, etc.
My thought is to write some code like this.
do repeat t=t1 to t7000
compute t = v*v;
end repeat.
But, I don't think this will work.
What is the right way to do this? Thanks so much in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以在 DO REPEAT 命令上指定多个替代变量。
Multiple stand-in variables can be specified on a DO REPEAT command.