<?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: JSL scripting question:  How to put charts together into one same output in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5729#M5728</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - I tried that, and it doesn't seem to work for me for some reason.&amp;nbsp; I'm getting blank lines - possibly caused by invisible control characters - between every line of script, plus assorted cases of quite short lines being split into two, as if it thinks the line width is about 20 or 30 characters.&amp;nbsp; I'll keep experimenting though - and thanks for the tip: it suggests that I'm not attempting to do something impossible!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2012 13:43:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-04T13:43:21Z</dc:date>
    <item>
      <title>JSL scripting question:  How to put charts together into one same output</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5726#M5725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to JSL scripting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have few column data to be chosen by user for analysis. &lt;/P&gt;&lt;P&gt;The code I written will generate several graphs equal to columns chosen.&lt;/P&gt;&lt;P&gt;May I know how to combine all the graphs into one output? &lt;/P&gt;&lt;P&gt;Can anybody help to provide me the code/syntax?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code (I discarded those variable passing routines):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For(i=1,i&amp;lt;=tot_entry,i++,&lt;/P&gt;&lt;P&gt;MyDist=Distribution(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Continuous Distribution(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Column (eval(analyzelist&lt;I&gt;)),Stack(1), Horizontal Layout(1), Normal Quantile Plot(1) , Stem and Leaf(1), &lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Capability Analysis( LSL(eval(lsl)), USL(eval(usl)), Target(eval(target)))),&lt;/P&gt;&lt;P&gt;&amp;nbsp; SendToReport(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dispatch( {}, "Distributions", OutlineBox, {Set Title( "Distribution of " || title )} ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) &lt;/P&gt;&lt;P&gt;&amp;nbsp; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 01:46:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5726#M5725</guid>
      <dc:creator>ahchin5</dc:creator>
      <dc:date>2012-10-04T01:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: JSL scripting question:  How to put charts together into one same output</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5727#M5726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - rather than just creating an object called MyDist, you could append the Distribution to an initially empty Line Up Box, and then display that Line Up Box in a window.&amp;nbsp; The following shows the sort of thing, though obviously the actual numbers I've used here won't make sense in the context of your capability analysis.&amp;nbsp; Please note that I'm running this in JMP 10, as I think it won't work in JMP 9:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;analyzelist = {"height", "weight"};&lt;/P&gt;&lt;P&gt;tot_entry = N Items( analyzelist );&lt;/P&gt;&lt;P&gt;lsl = 80;&lt;/P&gt;&lt;P&gt;usl = 90;&lt;/P&gt;&lt;P&gt;target = 70;&lt;/P&gt;&lt;P&gt;title = "MY TITLE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lub = Lineup Box( N Col( 1 ) );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For( i = 1, i &amp;lt;= tot_entry, i++,&lt;/P&gt;&lt;P&gt;lub &amp;lt;&amp;lt; append( Distribution(&lt;/P&gt;&lt;P&gt;Continuous Distribution(&lt;/P&gt;&lt;P&gt;Column( Eval( analyzelist&lt;I&gt; ) ),&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Stack( 1 ), Horizontal Layout( 1 ), Normal Quantile Plot( 1), Stem and Leaf( 1 ),&lt;/P&gt;&lt;P&gt;Capability Analysis( LSL( Eval( lsl ) ), USL( Eval( usl ) ),&lt;BR /&gt;Target( Eval( target ) ) ) ),&lt;/P&gt;&lt;P&gt;SendToReport( Dispatch( {}, "Distributions",&lt;BR /&gt;OutlineBox, {Set Title( "Distribution of " || title )} ))&lt;/P&gt;&lt;P&gt;)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nw = New Window( "Capability Charts", lub );&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/*&lt;/P&gt;&lt;P&gt;I'm sorry I can't format this any better, but I seem to be unable to paste script directly into this window.&amp;nbsp; You can reformat it from the Edit menu once it's inside a script window, however.&amp;nbsp; Here's another example of the same sort of thing in which I've created a grid of outputs from the Graph Builder:&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt = Open( "$SAMPLE_DATA/Car Physical Data.jmp" );&lt;/P&gt;&lt;P&gt;colnames = dt &amp;lt;&amp;lt; get column names( numeric );&lt;/P&gt;&lt;P&gt;show(colnames);&lt;/P&gt;&lt;P&gt;lub = line up box(ncol(3));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;=nItems(colnames), i++,&lt;/P&gt;&lt;P&gt;lub &amp;lt;&amp;lt; append(Graph Builder(&lt;/P&gt;&lt;P&gt;Size(300, 200 ), Show Control Panel( 0 ), Show Legend( 0 ),&lt;/P&gt;&lt;P&gt;Variables( X( :Country ), Y( eval(char(colnames&lt;I&gt;)) ) ),&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Elements( Box Plot( X, Y, Legend( 0 ), Jitter( 1 ), Outliers( 1 ), Box Style( "Outlier" )))&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nw = new window("Box Plots", lub);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 12:28:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5727#M5726</guid>
      <dc:creator />
      <dc:date>2012-10-04T12:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: JSL scripting question:  How to put charts together into one same output</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5728#M5727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To paste a script with all of the formatting and colors intact, first copy it from JMP to MS-Word, then from Word to this forum.&amp;nbsp; I replace TAB characters with four spaces to get things to indent the proper amount.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Open&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"$SAMPLE_DATA/Car Physical Data.jmp"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;colnames &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; dt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; get column names&lt;STRONG&gt;(&lt;/STRONG&gt; numeric &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Show&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; colnames &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;lub &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Lineup Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;N Col&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt; &lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;3&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;For&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; i &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; i &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;N Items&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; colnames &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; i&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;++,&lt;/SPAN&gt; &lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lub &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; append&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Graph Builder&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Size&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;300&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;200&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Show Control Panel&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Show Legend&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Variables&lt;STRONG&gt;(&lt;/STRONG&gt; X&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;Country &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; Y&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Eval&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Char&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; colnames&lt;STRONG&gt;[&lt;/STRONG&gt;i&lt;STRONG&gt;]&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Elements&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Box Plot&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Legend&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jitter&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Outliers&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Box Style&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"Outlier"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 13:27:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5728#M5727</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2012-10-04T13:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: JSL scripting question:  How to put charts together into one same output</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5729#M5728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - I tried that, and it doesn't seem to work for me for some reason.&amp;nbsp; I'm getting blank lines - possibly caused by invisible control characters - between every line of script, plus assorted cases of quite short lines being split into two, as if it thinks the line width is about 20 or 30 characters.&amp;nbsp; I'll keep experimenting though - and thanks for the tip: it suggests that I'm not attempting to do something impossible!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 13:43:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5729#M5728</guid>
      <dc:creator />
      <dc:date>2012-10-04T13:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: JSL scripting question:  How to put charts together into one same output</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5730#M5729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As PMRoz mentioned these nice scripts will not work in JMP9.&amp;nbsp; Below is a slight modification that will work in JMP9 and 10.&amp;nbsp; Note the panel box is not needed.&amp;nbsp; I just added it as demonstration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The approach I like to take is to build the general structure or layout of my display window or dialogue then drop in the analyses, graphs and tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By wrapping a display box (an HListBox) around the distribution, it is still active.&amp;nbsp; Howver, once you assign it in one window any subsequent paste or append is a cloned or inactive display (like a journaled report). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the 3 steps, my colleagues and I teach to new JSL users are : &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1) Create the layout,&amp;nbsp; a template for your general display, creating a handle for each placeholder in the window &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2) For each analysis or analysis group &lt;I&gt;, create your display "hidden" within a displaybox (HListBox or VListBox or OutLineBox or PanelBox. etc.) , then&amp;nbsp; &lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3) Append this display &lt;I&gt; to the placeholder in the window created in step 1.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We call this building a display "bottom up."&amp;nbsp; This approach makes it much easier to manage special cases, like different spec limits for each variable LSL&lt;I&gt; and USL&lt;I&gt;, etc. and debug problems step by step.&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;//=================Good scripting!. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nw = New Window( "Capability Charts", lub );Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;analyzelist = {"height", "weight"};&lt;/P&gt;&lt;P&gt;tot_entry = N Items( analyzelist );&lt;/P&gt;&lt;P&gt;lsl = 80;&lt;/P&gt;&lt;P&gt;usl = 90;&lt;/P&gt;&lt;P&gt;target = 70;&lt;/P&gt;&lt;P&gt;title = "MY TITLE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nw = New Window( "Capability Charts", &lt;BR /&gt;&amp;nbsp; pb = panel box("Capability",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lub = Lineup Box( N Col( 1 ) )&lt;BR /&gt;&amp;nbsp; ));&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;For( i = 1, i &amp;lt;= tot_entry, i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; hlb = HlistBox( Distribution(&lt;/P&gt;&lt;P&gt;Continuous Distribution(&lt;/P&gt;&lt;P&gt;Column( Eval( analyzelist&lt;I&gt; ) ),&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Stack( 1 ), Horizontal Layout( 1 ), Normal Quantile Plot( 1), Stem and Leaf( 1 ),&lt;/P&gt;&lt;P&gt;Capability Analysis( LSL( Eval( lsl ) ), USL( Eval( usl ) ),&lt;BR /&gt;Target( Eval( target ) ) ) ),&lt;/P&gt;&lt;P&gt;SendToReport( Dispatch( {}, "Distributions",&lt;BR /&gt;OutlineBox, {Set Title( "Distribution of " || analyzelist&lt;I&gt; )} ))&lt;/I&gt;&lt;/P&gt;&lt;P&gt;));&lt;BR /&gt; lub &amp;lt;&amp;lt; append(hlb)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 20:53:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-scripting-question-How-to-put-charts-together-into-one-same/m-p/5730#M5729</guid>
      <dc:creator>gzm</dc:creator>
      <dc:date>2012-10-05T20:53:42Z</dc:date>
    </item>
  </channel>
</rss>

