如何在 SPSS 中指定某个输出,如果有多个输出文件已打开。

huangapple go评论95阅读模式
英文:

How to specify a certain output if more than one output files are open in spss

问题

我有2个输出文件已打开。在运行SPSS中的语法时,如何指定到特定的输出文件?

英文:

I have 2 output files open. How do I specify to a certain output file when running the syntax in SPSS?

答案1

得分: 2

你的输出窗口有名称,你可以在左上角看到 - 例如:
如何在 SPSS 中指定某个输出,如果有多个输出文件已打开。

如果你想要的话,你可以更改这个名称,像这样:

  1. output name "MyOutput"

如何在 SPSS 中指定某个输出,如果有多个输出文件已打开。

你可以使用它的名称激活任何已打开的输出窗口,像这样:

  1. output activate "ThisOutput"
  2. freq thisVar
  3. output activate "ThatOutput"
  4. freq ThatVar

每个 freq 命令将在它指定的输出窗口中运行。

英文:

Your output windows have names that you can see in the upper left corner - e.g:
如何在 SPSS 中指定某个输出,如果有多个输出文件已打开。

You can change this name if you want, so

  1. output name "MyOutput".

如何在 SPSS 中指定某个输出,如果有多个输出文件已打开。

You can activate any open output window using it's name, like this:

  1. output activate "ThisOutput".
  2. freq thisVar.
  3. output activate "ThatOutput".
  4. freq ThatVar.

Each freq command will run in it's designated output window.

huangapple
  • 本文由 发表于 2023年1月9日 14:34:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/75053856.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定