<?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: Variability Plot Grouping in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/580428#M78751</link>
    <description>&lt;P&gt;Is there to way to define the limits and axis range independently for each variability plot by this method?&lt;/P&gt;&lt;P&gt;For example if I wanted to add a horizontal line at -1 on one plot and 0 on the next one, can we do that ?&lt;/P&gt;</description>
    <pubDate>Mon, 12 Dec 2022 19:06:31 GMT</pubDate>
    <dc:creator>888kk888</dc:creator>
    <dc:date>2022-12-12T19:06:31Z</dc:date>
    <item>
      <title>Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270426#M52651</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a bunch of variability plots to show on a single window with same columns grouping. How will I just define the x_grouping at the very top, so that I can change the grouping in only one place. For example, I want to define grouping by :xA, :xB, and ;xC outside the function "variability chart ( )", so that I can change grouping columns in one place only. Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dt = Current Data Table( );

/*

A general grouping variable for X grouping.

*/


New Window(
	"Variability",
	V List Box(
		Variability Chart(
			Y( :Y1 ),
			X( :xA, :xB, :xC ),
		),
		Variability Chart(
			Y( :Y1 ),
			X( :xA, :xB, :xC ),
			Connect Cell Means( 1 )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:28:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270426#M52651</guid>
      <dc:creator>RA</dc:creator>
      <dc:date>2023-06-09T23:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270534#M52659</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/18414"&gt;@RA&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can create multiple variability plots with one Variability Plot() platform statement&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Dogs.jmp" );


New Window(
	"Variability",
	V List Box(
		vc = dt &amp;lt;&amp;lt; Variability Chart(
		Y( :LogHist0, :LogHist1, :LogHist3, :LogHist5 ),
		X( :drug, :dep1 ),
		Connect Cell Means( 1 ),
		Std Dev Chart( 0 )
	)
  ) //end VListBox
);

show(vc);
//vc = {Variability Chart[], Variability Chart[], Variability Chart[], Variability Chart[]};

//you can reference and change the the plots, see below

report(vc[1])[FrameBox(1)] &amp;lt;&amp;lt; select; 

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 555px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24347iCF2C6B4A0164A666/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 18:45:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270534#M52659</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2020-06-03T18:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270538#M52660</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/70"&gt;@gzmorgan0&lt;/a&gt;&lt;BR /&gt;Can you explain the purpose of these two statements a bit more?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Show( vc );
//vc = {Variability Chart[], Variability Chart[], Variability Chart[], Variability Chart[]};
Report( vc[1] )[FrameBox( 1 )] &amp;lt;&amp;lt; select;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Jun 2020 19:26:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270538#M52660</guid>
      <dc:creator>RA</dc:creator>
      <dc:date>2020-06-03T19:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270545#M52662</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/18414"&gt;@RA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When scripting, it is useful to create variable references to the objects, in your case the 4 variability charts.&amp;nbsp; I do not know your JSL experience, so those statements are showing you how to create a variable reference to the varaibility charts.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;vc = dt &amp;lt;&amp;lt; Variability Chart()&amp;nbsp; sets up a reference to a list of the varaibiity charts created by&amp;nbsp; this statement&lt;/LI&gt;
&lt;LI&gt;you can referencs them in a for loop&amp;nbsp; &amp;nbsp;For( i=1, i&amp;lt;=nitems(vc), i++, vc[i] &amp;lt;&amp;lt;&amp;nbsp; &amp;nbsp;...&amp;nbsp; &amp;nbsp;or report( vc[i]&amp;nbsp; ) &amp;lt;&amp;lt; ...&lt;/LI&gt;
&lt;LI&gt;some options you can change all&amp;nbsp; vc &amp;lt;&amp;lt; Std Dev(1)&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//change var chart
report(vc[1])[FrameBox(1)] &amp;lt;&amp;lt; {Background Color( 32)} ;

//change all var charts
vc &amp;lt;&amp;lt; Connect Cell Means(0);
wait(2);
vc &amp;lt;&amp;lt; Connect Cell Means(1);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My goal was inform you of this capability just in case you were not aware, that is, I was anticipating a next question.&amp;nbsp; Sorry if it was unclear.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 19:10:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270545#M52662</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2020-06-03T19:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270555#M52665</link>
      <description>I am new to jsl. This referencing tip is highly appreciated.</description>
      <pubDate>Wed, 03 Jun 2020 19:23:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/270555#M52665</guid>
      <dc:creator>RA</dc:creator>
      <dc:date>2020-06-03T19:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Variability Plot Grouping</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/580428#M78751</link>
      <description>&lt;P&gt;Is there to way to define the limits and axis range independently for each variability plot by this method?&lt;/P&gt;&lt;P&gt;For example if I wanted to add a horizontal line at -1 on one plot and 0 on the next one, can we do that ?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 19:06:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-Plot-Grouping/m-p/580428#M78751</guid>
      <dc:creator>888kk888</dc:creator>
      <dc:date>2022-12-12T19:06:31Z</dc:date>
    </item>
  </channel>
</rss>

