JMP 13.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
Scripting Guide
•
Data Structures
• Associative Arrays
上一个
•
下一个
Associative Arrays
An associative array maps unique keys to values that can be non-unique. An associative array is also called a dictionary, a map, a hash map, or a hash table.
Note the following about keys:
•
Keys are placed in quotes.
•
The value associated with a key can be a number, date, matrix, list, and so on.
•
A key cannot be a floating point number. Only integers are supported.
•
You can use matrices as both keys and values, or lists as both keys and values, but you cannot mix the two. In other words, you cannot use a matrix as a key and a list as a value, or the other way around.
•
Though associative arrays are not usually ordered, in JMP, keys are returned in alphanumeric order for the purpose of iteration and serialization.
For very large lists, using an associative array is more efficient and faster.