这篇帖子最初是用 English (US) 书写的,已做计算机翻译处理。当您回复时,文字也会被翻译成 English (US)。
1 个已接受解答
5 条回复5
这是让您入门的一种方法。它适用于任意数量的列。它确实假设规格限嵌入到数据列中,作为规格限列属性
names default to here(1);
// Open a sample data table that has the Column Property of "Spec Limits" set
dt=Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
// Create a List that has all of the columns that need to be processed
colNamesList = dt << Get Column Names( String, continuous );
// Start to Build the command string to run all of the outputs
theExpr = "dist = dt << Distribution( invisible,";
// Loop across all of the required columns to generate the Cpks
For( i = 1, i<=Nitems(colNamesList), i++,
theExpr = theExpr || "Continuous Distribution( Column( " || colNamesList[i] || ")),";
);
// Finish up the command string
theExpr = TheExpr || ");";
eval(Parse(theExpr));
// Create the data table with all of the capability stats
dtCap = report(Dist)["Long Term Sigma"][TableBox(1)]<
这篇帖子最初是用 English (US) 书写的,已做计算机翻译处理。当您回复时,文字也会被翻译成 English (US)。
你还应该仔细看看过程筛选平台。 它就是为这种情况而建造的。 也看到这个最近推介会经过@Laura_Lancaster .
这篇帖子最初是用 English (US) 书写的,已做计算机翻译处理。当您回复时,文字也会被翻译成 English (US)。