JMP 13.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
Scripting Guide
•
Scripting Platforms
•
Specify Which Columns to Analyze
• Specify Multiple Column Names at Once
上一个
•
下一个
Specify Multiple Column Names at Once
If you have a lot of column names, instead of listing each one individually, you can use lists as column arguments. The following example gets the column names from a list and runs a Distribution on each column in the list.
dt =
Open
(
"$SAMPLE_DATA/Big Class.jmp"
);
Distribution
( Y(
1
::
N Col
( dt ) ) );
Tip:
If you do not know the column names when you are writing the script, use column indices, as done in this example.