<?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: Change marker size and frame size of multiple variability plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/801202#M97680</link>
    <description>&lt;P&gt;-Jarmo,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another problem I have in this example script is "Show Box Plots(0)" does not turn off the box plot. Can you please advise how to turn off the box plot in this example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;rex&lt;/P&gt;</description>
    <pubDate>Sun, 22 Sep 2024 04:38:17 GMT</pubDate>
    <dc:creator>LatentDataTiger</dc:creator>
    <dc:date>2024-09-22T04:38:17Z</dc:date>
    <item>
      <title>Change marker size and frame size of multiple variability plot</title>
      <link>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/800949#M97651</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an easy way to use the "sendtoreport" and "dispatch" functions to change the frame size and marker size of the :height and :weight&amp;nbsp; variability charts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is an example using Big Class.jmp. I couldn't find a way to change the marker size and frame size to work in both variability charts. Not sure if there's an easy way without having to use the for loop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;rex&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open( "$SAMPLE_DATA/Big Class.jmp" );
Variability Chart(
		Y( :Height ,:Weight),
		X(:sex),
		Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
		Std Dev Chart( 0 ),
		Points Jittered( 1 ),
		Show Box Plots( 0 ),
		Show range bars(0),
		Connect cell means(0),
		Show cell means(0),
		SendToReport(
				Dispatch(
					{},
					"variability chart",
					FrameBox,
					{Frame Size( 800, 240 ), Marker Size( 2 )}
				)
		)
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Sep 2024 22:12:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/800949#M97651</guid>
      <dc:creator>LatentDataTiger</dc:creator>
      <dc:date>2024-09-20T22:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change marker size and frame size of multiple variability plot</title>
      <link>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/800982#M97655</link>
      <description>&lt;P&gt;You can use XPath to get list of references to frameboxes and then send messages to that list&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 = Open("$SAMPLE_DATA/Big Class.jmp");
var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:Height, :Weight),
	X(:sex),
	Analysis Type("Choose best analysis (EMS REML Bayesian)"),
	Std Dev Chart(0),
	Points Jittered(1),
	Show Box Plots(0),
	Show range bars(0),
	Connect cell means(0),
	Show cell means(0)
);

fbs = Report(var) &amp;lt;&amp;lt; XPath("//FrameBox[@helpKey = 'Variability Chart']");

fbs[1::N Items(fbs)::2] &amp;lt;&amp;lt; Frame Size(300, 300) &amp;lt;&amp;lt; Marker Size(10);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I use 1,3 indexes (1::N Items(fbs)::2) because the stddev charts are in the report, they are just hidden (2 and 4 indices in this case) butt most likely it would be fine to update those sizes as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Sep 2024 05:22:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/800982#M97655</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-09-21T05:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Change marker size and frame size of multiple variability plot</title>
      <link>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/801202#M97680</link>
      <description>&lt;P&gt;-Jarmo,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another problem I have in this example script is "Show Box Plots(0)" does not turn off the box plot. Can you please advise how to turn off the box plot in this example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;rex&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 04:38:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/801202#M97680</guid>
      <dc:creator>LatentDataTiger</dc:creator>
      <dc:date>2024-09-22T04:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change marker size and frame size of multiple variability plot</title>
      <link>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/801204#M97681</link>
      <description>&lt;P&gt;For me they are disabled in my example. If that doesn't work you can send the message separately to each of the outline variability analyses (or the platform)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:Height, :Weight),
	X(:sex),
	Analysis Type("Choose best analysis (EMS REML Bayesian)"),
	Std Dev Chart(0),
	Points Jittered(1),
	Show Box Plots(0),
	Show range bars(0),
	Connect cell means(0),
	Show cell means(0)
);

fbs = Report(var) &amp;lt;&amp;lt; XPath("//FrameBox[@helpKey = 'Variability Chart']");

fbs[1::N Items(fbs)::2] &amp;lt;&amp;lt; Frame Size(300, 300) &amp;lt;&amp;lt; Marker Size(10);

obs_varanalysis = Report(var) &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey = 'Variability' and contains(text(), 'Variability Gauge Analysis for')]");
(obs_varanalysis &amp;lt;&amp;lt; Get Scriptable Object) &amp;lt;&amp;lt; show box plots(1); // change to 0&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Scripting index also has an example, but this might require looping&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1726984153170.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/68515iF014B55A83874EA5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1726984153170.png" alt="jthi_0-1726984153170.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or if you have JMP18 &amp;lt;&amp;lt; Broadcast should work&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:Height, :Weight),
	X(:sex),
	Analysis Type("Choose best analysis (EMS REML Bayesian)"),
	Std Dev Chart(0),
	Points Jittered(1),
	Show Box Plots(0),
	Show range bars(0),
	Connect cell means(0),
	Show cell means(0)
);

fbs = Report(var) &amp;lt;&amp;lt; XPath("//FrameBox[@helpKey = 'Variability Chart']");
fbs[1::N Items(fbs)::2] &amp;lt;&amp;lt; Frame Size(300, 300) &amp;lt;&amp;lt; Marker Size(10);

var &amp;lt;&amp;lt; (Variability Analysis[1] &amp;lt;&amp;lt; Broadcast(Show Box Plots(1)));
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 22 Sep 2024 05:50:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-marker-size-and-frame-size-of-multiple-variability-plot/m-p/801204#M97681</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-09-22T05:50:35Z</dc:date>
    </item>
  </channel>
</rss>

