SPSS:循环多个变量

发布于 2024-11-28 08:21:27 字数 299 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆离笙 2024-12-05 08:21:27

可以在 DO REPEAT 命令上指定多个替代变量。

do repeat t = t1 to t7000
 /v = v1 to v7000.
compute t = v**2.
end repeat.

Multiple stand-in variables can be specified on a DO REPEAT command.

do repeat t = t1 to t7000
 /v = v1 to v7000.
compute t = v**2.
end repeat.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文