JMP 14.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
该帮助的版本不再更新,请参见
https://www.jmp.com/support/help/zh-cn/15.2
获取最新的版本.
Scripting Guide
•
JSL Building Blocks
• Inquiry Functions
上一个
•
下一个
Inquiry Functions
Inquiry functions identify the type of an element, such as a string, list, or matrix. You can then write a script specific to that element type.
JMP also uses inquiry functions to determine the writability of a directory or file and to identify a computer’s operating system and the JMP version.
General Element Types
The
Type()
function returns a string naming the type of the resulting value. For example:
Show
(
Type
(
1
),
Type
(
"hi"
),
Type
( {
"a"
,
2
} ),
Type
( [
10 24 325
] ) );
results in:
Type(1) = "Integer"
Type("hi") = "String"
Type({"a", 2}) = "List"
Type([10 24 325]) = "Matrix";