英文:
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
如果你想要的话,你可以更改这个名称,像这样:
output name "MyOutput"。
你可以使用它的名称激活任何已打开的输出窗口,像这样:
output activate "ThisOutput"。
freq thisVar。
output activate "ThatOutput"。
freq ThatVar。
每个 freq
命令将在它指定的输出窗口中运行。
英文:
Your output windows have names that you can see in the upper left corner - e.g:
You can change this name if you want, so
output name "MyOutput".
You can activate any open output window using it's name, like this:
output activate "ThisOutput".
freq thisVar.
output activate "ThatOutput".
freq ThatVar.
Each freq
command will run in it's designated output window.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论