<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Spec limits issue in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50349#M28640</link>
    <description>&lt;P&gt;My suggestion is that you import the spec limits as column propery, independent from the Distribution Platform.&amp;nbsp; then when you run the platform, you specify,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution( 
     Continuous Distribution( Column( :NPN1 ), 
     Capability Analysis( 0 ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Examples of all elements availabe to any of the platforms is available in the scripting index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;I suggest you familiarize yourself with it.&amp;nbsp; It is the answer to most of your questions.&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
USL = 70;
LSL = 55;
Eval(
	Substitute(
			Expr(
				:Height &amp;lt;&amp;lt; set property( "spec limits", {LSL( __LSL__ ), USL( __USL__ ),Show Limits(1)} )
		
			),
		Expr( __LSL__ ), LSL,
		Expr( __USL__ ), USL
	)
);
Distribution( Continuous Distribution( Column( :height ), Capability Analysis( 0 ) ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 28 Jan 2018 02:39:23 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2018-01-28T02:39:23Z</dc:date>
    <item>
      <title>Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50166#M28545</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to import spec limits and having some error when I ran the script. Here is the script and error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;dt = &lt;/SPAN&gt;Current Data Table&lt;SPAN class="s1"&gt;();&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Eval&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Parse&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;"obj = dt &amp;lt;&amp;lt; Process Capability(&lt;/P&gt;&lt;P class="p3"&gt;Process Variables( "&lt;SPAN class="s1"&gt;|| names ||&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;" ),&lt;/P&gt;&lt;P class="p3"&gt;Spec Limits(Import Spec Limits("&lt;SPAN class="s1"&gt;SpecA.jmp&lt;/SPAN&gt;") ) &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;)&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;;"&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p4"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;)&lt;/P&gt;&lt;P class="p4"&gt;);&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;The names varaible has all columns and worked fine in other script. I appreciate any help.&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 00:17:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50166#M28545</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-25T00:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50170#M28548</link>
      <description>&lt;P&gt;I've only given the script a quick glance, but one problem I see is that you have quotes contained within your quoted string.&amp;nbsp; Specifically the name of the table is in quotes, and those quotes are part of a larger quoted string.&amp;nbsp; To embed quotes within a string you need to use the escape sequence \!" ... so where you have&amp;nbsp;&lt;SPAN&gt;Import Spec Limits("&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;SpecA.jmp&lt;/SPAN&gt;&lt;SPAN&gt;") you need&amp;nbsp;Import Spec Limits(\!"&lt;SPAN class="s1"&gt;SpecA.jmp\"&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 02:05:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50170#M28548</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2018-01-25T02:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50171#M28549</link>
      <description>&lt;P&gt;There is an Addin that populates limits into a data table, from another JMP limits table.&amp;nbsp; See&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Add-Ins/Write-Limits-to-a-Data-Table-from-a-Limits-Table/ta-p/35790" target="_self"&gt;Write Limits to a Data Table from a Limits Table&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 02:19:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50171#M28549</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-01-25T02:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50240#M28584</link>
      <description>&lt;P&gt;Aside from using "\[ ]\" to mask double quotes in a string, I also find that the Eval Insert() function is very handy for including the values of variables in a string, like the variable "names".&amp;nbsp; You can insert the values of variables into a string using the carrot symbol "^".&amp;nbsp; Here's how you might be able to get this to work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table();

Eval(
	Parse(
		Eval Insert("\[obj = dt &amp;lt;&amp;lt; Process Capability(
			Process Variables(  ^names^ ),
			Spec Limits(Import Spec Limits( "$DESKTOP/SpecA.jmp") ) );]\"
		)
    )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Of course, your SpecA.jmp may not be on your desktop.&amp;nbsp; Just make sure the path is correct for that file.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 21:00:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50240#M28584</guid>
      <dc:creator>cwillden</dc:creator>
      <dc:date>2018-01-25T21:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50325#M28630</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for all your suggestions. I am still getting an error with the last suggestion.&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Exception in platform launch in access or evaluation of 'Process Capability' , Process Capability(/*###*/Process Variables(&lt;/P&gt;&lt;P class="p1"&gt;:A,B,...&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Any further help is appreciated. Thanks&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 22:30:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50325#M28630</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-26T22:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50330#M28633</link>
      <description>&lt;P&gt;Can you post the value of the variable "names"?&amp;nbsp; It may not like the format for your list of column names.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 23:03:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50330#M28633</guid>
      <dc:creator>cwillden</dc:creator>
      <dc:date>2018-01-26T23:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50346#M28637</link>
      <description>&lt;P&gt;Thanks for the reply and feedback. Here is what the definition of "names" is&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;lstNames = dt &amp;lt;&amp;lt; &lt;SPAN class="s1"&gt;Get Column Names&lt;/SPAN&gt;( string, Numeric );&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;names = &lt;SPAN class="s2"&gt;":"&lt;/SPAN&gt; || lstNames[&lt;SPAN class="s3"&gt;1&lt;/SPAN&gt;];&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s4"&gt;For&lt;/SPAN&gt;( i = &lt;SPAN class="s3"&gt;2&lt;/SPAN&gt;, i &amp;lt;= &lt;SPAN class="s4"&gt;N Items&lt;/SPAN&gt;( lstNames ), i++,&lt;/P&gt;&lt;P class="p1"&gt;names = names || &lt;SPAN class="s2"&gt;",:"&lt;/SPAN&gt; || lstNames[i]&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;);&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;I have used "names" in other part of JMP script and no issue. Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 00:27:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50346#M28637</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-28T00:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50347#M28638</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I found out that in my list of columns for some reason A_B is written as A-B and fixing this will work with the following script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Eval&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;Parse&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;Eval&lt;/SPAN&gt; (&lt;/P&gt;&lt;P class="p3"&gt;"obj = dt &amp;lt;&amp;lt; Capability(&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s3"&gt;Y("&lt;/SPAN&gt; || names || &lt;SPAN class="s3"&gt;"),&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;Spec Limits(Import Spec Limits(\!"SpecA.jmp\!") ) );"&lt;/P&gt;&lt;P class="p2"&gt;)&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;)&lt;/P&gt;&lt;P class="p2"&gt;);&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;Thank you all for great support. Best&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 01:24:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50347#M28638</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-28T01:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50348#M28639</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How do I&amp;nbsp; import Spec Limit without doing any capability analysis in a script ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 01:50:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50348#M28639</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-28T01:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50349#M28640</link>
      <description>&lt;P&gt;My suggestion is that you import the spec limits as column propery, independent from the Distribution Platform.&amp;nbsp; then when you run the platform, you specify,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution( 
     Continuous Distribution( Column( :NPN1 ), 
     Capability Analysis( 0 ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Examples of all elements availabe to any of the platforms is available in the scripting index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;I suggest you familiarize yourself with it.&amp;nbsp; It is the answer to most of your questions.&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
USL = 70;
LSL = 55;
Eval(
	Substitute(
			Expr(
				:Height &amp;lt;&amp;lt; set property( "spec limits", {LSL( __LSL__ ), USL( __USL__ ),Show Limits(1)} )
		
			),
		Expr( __LSL__ ), LSL,
		Expr( __USL__ ), USL
	)
);
Distribution( Continuous Distribution( Column( :height ), Capability Analysis( 0 ) ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Jan 2018 02:39:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50349#M28640</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-01-28T02:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50533#M28726</link>
      <description>&lt;P&gt;Thanks Jim. I like to be able to import the spec limit and show histogram with spec limit and also Cpk analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote the following script and it does not show the histogram:&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;dt = Current data table();&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s1"&gt;obj = &lt;/SPAN&gt;Capability&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p4"&gt;Y( :A ),&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s3"&gt;Spec Limits&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;( Import Spec Limits( &lt;/SPAN&gt;"$Documents/JMP/SpecA.jmp"&lt;SPAN class="s1"&gt; ) ),&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p4"&gt;Individual Detail Reports( &lt;SPAN class="s4"&gt;1&lt;/SPAN&gt; ),&lt;/P&gt;&lt;P class="p4"&gt;Capability Box Plots( &lt;SPAN class="s4"&gt;0&lt;/SPAN&gt; ),&lt;/P&gt;&lt;P class="p3"&gt;Goal Plot&lt;SPAN class="s1"&gt;( &lt;/SPAN&gt;&lt;SPAN class="s4"&gt;0&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p4"&gt;);&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p4"&gt;obj &amp;lt;&amp;lt; &lt;SPAN class="s5"&gt;Distribution&lt;/SPAN&gt;( &lt;SPAN class="s3"&gt;Continuous Distribution&lt;/SPAN&gt;( &lt;SPAN class="s2"&gt;Column&lt;/SPAN&gt;( : A),&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;Capability Analysis&lt;SPAN class="s1"&gt;( &lt;/SPAN&gt;&lt;SPAN class="s4"&gt;1&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; ) ) );&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p4"&gt;obj &amp;lt;&amp;lt; &lt;SPAN class="s5"&gt;Histogram&lt;/SPAN&gt;(&lt;SPAN class="s4"&gt;1&lt;/SPAN&gt;, Show Spec Limits(&lt;SPAN class="s4"&gt;1&lt;/SPAN&gt;));&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p4"&gt;I appreciate your further help. Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 19:00:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50533#M28726</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-31T19:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50535#M28727</link>
      <description>&lt;P&gt;The Capability Platform does not automatically save the Spec Limits to the column properties.&amp;nbsp;&amp;nbsp;They have to have the message&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj &amp;lt;&amp;lt; Save Spec Limits as Column Properties.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;specified.&lt;/P&gt;
&lt;P&gt;Then, you can run the Distribution Platform.&amp;nbsp; But contrary to how you have it listed, the Distribution is not passed to the Object associated with the Capability Platform, it is passed to the data table&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp" );
obj = dt &amp;lt;&amp;lt; Capability(
	Y( :OZONE, :CO, :SO2, :NO ),
	Spec Limits(
		Import Spec Limits(
			"$SAMPLE_DATA/CitySpecLimits.jmp"
		)
	)
);
obj &amp;lt;&amp;lt; Save Spec Limits as Column Properties;

Dis = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution( Column( :OZONE ) ),
	Continuous Distribution( Column( :CO ) ),
	Continuous Distribution( Column( :SO2 ) ),
	Continuous Distribution( Column( :NO ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This is all detailed in the message documentation in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index==&amp;gt;Capability&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 19:15:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50535#M28727</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-01-31T19:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50541#M28731</link>
      <description>&lt;P&gt;Thanks Jim. That's very helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you choose the columns you want to do the histogram in the script? It looks like you have to list them one by one using Continuous Distribution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate any help/comments. Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 20:55:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50541#M28731</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-31T20:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50543#M28733</link>
      <description>&lt;P&gt;You question how to enter the column specification for the Distribution Platform.&amp;nbsp; The syntax that is required to run any given platform can be determined by&lt;/P&gt;
&lt;P&gt;1. Running the platform interactively, and then saving the script, and examining it for what is required to run multiple columns.&lt;/P&gt;
&lt;P&gt;2. To to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;and then go to the Platform of choice (i.e. Distribution) and going through the various examples provided in the index.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 21:05:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50543#M28733</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-01-31T21:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50545#M28735</link>
      <description>&lt;P&gt;Thanks Jim. I went through that and found somethig like this script:&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Column Dialog&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;ex y = ColList( &lt;SPAN class="s2"&gt;"Y"&lt;/SPAN&gt;, Min Col( &lt;SPAN class="s3"&gt;1&lt;/SPAN&gt; ), Max Col( &lt;SPAN class="s3"&gt;80&lt;/SPAN&gt; ), Data Type( &lt;SPAN class="s2"&gt;"Numeric"&lt;/SPAN&gt; ) ),&lt;/P&gt;&lt;P class="p2"&gt;ex x = ColList( &lt;SPAN class="s2"&gt;"X"&lt;/SPAN&gt;, Max Col( &lt;SPAN class="s3"&gt;1&lt;/SPAN&gt; ), Modeling Type( {&lt;SPAN class="s2"&gt;"Continuous"&lt;/SPAN&gt;, &lt;SPAN class="s2"&gt;"Multiple Response"&lt;/SPAN&gt;} ) )&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;);&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN style="font-family: inherit;"&gt;How do I use the above column selection to do&amp;nbsp; Distribution/Histogram for instance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 21:30:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50545#M28735</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-01-31T21:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50546#M28736</link>
      <description>&lt;P&gt;The Column Dialog() function has been downgraded in importance in favor of using a New Window.&amp;nbsp; Here is an example of one way to choose columns and to pass them to a Platform.&amp;nbsp; This example is taken from&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Books==&amp;gt;Scripting Guide,&amp;nbsp; page 445&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
xvar = .;
yvar = .;
win = New Window( "Return Values",
	&amp;lt;&amp;lt;Modal,
	&amp;lt;&amp;lt;On Validate(
// require the user to select two variables before clicking OK
		Show( xvar, yvar );
		If( Is Missing( xvar ) | Is Missing( yvar ),
			0, // if xvar or yvar are missing, do nothing when OK is clicked
			1
		);
	),
	Text Box( " Select two numeric columns. " ),
	H List Box(
		Text Box( " X, Factor " ),
		x = Col List Box(
			dt, // data table reference
			all, // display all columns from the data table
			xvar = (x &amp;lt;&amp;lt; Get Selected)[1];
// get the name of the selected column before the window closes
			Show( xvar );
		),
		Text Box( "Y, Response" ),
		y = Col List Box(
			dt,
			all,
			yvar = (y &amp;lt;&amp;lt; Get Selected)[1];
			Show( yvar );
		)
	)
);
xcol = Column( dt, xvar ); // get the columns
ycol = Column( dt, yvar );
dt &amp;lt;&amp;lt; Bivariate( Y( ycol ), X( xcol ) ); // create a Bivariate plot&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Jan 2018 22:31:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50546#M28736</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-01-31T22:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Spec limits issue</title>
      <link>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50883#M28911</link>
      <description>&lt;P&gt;Thanks Jim. I made it to work.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 23:34:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spec-limits-issue/m-p/50883#M28911</guid>
      <dc:creator>AT</dc:creator>
      <dc:date>2018-02-07T23:34:30Z</dc:date>
    </item>
  </channel>
</rss>

