JMP 14.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
该帮助的版本不再更新,请参见
https://www.jmp.com/support/help/zh-cn/15.2
获取最新的版本.
Scripting Guide
•
Efficient Scripts
• Scripting Numbers, Strings, Arrays, and Lists
上一个
•
下一个
Scripting Numbers, Strings, Arrays, and Lists
•
Use a faster algorithm. Replacing an O(n^2) algorithm with an O(n) algorithm is faster than anything else. See
https://en.wikipedia.org/wiki/Big_O_notation
for more information.
•
Avoid concatenating long strings. 100s of characters is OK; 1,000,000s of characters will be slow if you build the string in 1,000,000s of operations.
•
Use numeric arrays (matrices, not lists).
‒
Use numeric arrays with operators that operate on the entire array.
‒
Avoid writing loops to manipulate numeric arrays.
•
Use associative arrays for lookups.