JMP 13.2 Online Documentation (English)
Discovering JMP
Using JMP
Basic Analysis
Essential Graphing
Profilers
Design of Experiments Guide
Fitting Linear Models
Predictive and Specialized Modeling
Multivariate Methods
Quality and Process Methods
Reliability and Survival Methods
Consumer Research
Scripting Guide
JSL Syntax Reference
JMP iPad Help
JMP Interactive HTML
Capabilities Index
JMP 12 Online Documentation
Scripting Guide
•
Scripting Platforms
•
Specify Which Columns to Analyze
• Specify Multiple Column Names at Once
Previous
•
Next
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.
Previous
•
Next
Help created on 9/19/2017