<?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: Turn off box plot in variability chart using JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801231#M97685</link>
    <description>&lt;P&gt;17.2?&lt;BR /&gt;&lt;BR /&gt;When Box plots are enabled via the preferences, I can disable them via (JMP 17 &amp;amp; 18):&lt;/P&gt;&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Show Box Plots( 0 )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1727006762427.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/68518iDBB775611D5B4A64/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1727006762427.png" alt="hogi_0-1727006762427.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;As an alternative, you can try&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Ignore Platform Preferences(1).&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I just learned it from&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Scripters Club Recording: JSL in Graph Builder" uid="800152" url="https://community.jmp.com/t5/JMP-Scripters-Club-Discussions/Scripters-Club-Recording-JSL-in-Graph-Builder/m-p/800152#U800152" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 22 Sep 2024 12:10:01 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-09-22T12:10:01Z</dc:date>
    <item>
      <title>Turn off box plot in variability chart using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801205#M97682</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know why the following script failed to turn off the box plot and cell mean? I copy this script after I manually created the variability plot. However, if I run the script, the box plot and cell mean are not turn off. I am currently using JMP17.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only workaround I found is by using either of the two options below :&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&amp;lt;&amp;lt; (Variability Analysis[1] &amp;lt;&amp;lt; Show Box Plots( 0 ))&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&amp;lt;&amp;lt; Variability Analysis &amp;lt;&amp;lt; Show Box Plots( 0 )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In option 1, what does the [1]&amp;nbsp; in Variability Analysis mean? It seems like I can omit without any issue. I found the solution from JMP -&amp;gt; Scripting Index.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open("$SAMPLE_DATA/Big Class.jmp");

Variability Chart(
	Y( :height ),
	Model( "Main Effect" ),
	X( :sex ),
	Sigma Multiplier( 6 ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Variability Analysis(
		:height,
		Show Range Bars( 0 ),
		Show Cell Means( 0 ),
		Std Dev Chart( 0 ),
		Points Jittered( 1 ),
		Show Box Plots( 0 )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 22 Sep 2024 06:23:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801205#M97682</guid>
      <dc:creator>LatentDataTiger</dc:creator>
      <dc:date>2024-09-22T06:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off box plot in variability chart using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801229#M97684</link>
      <description>&lt;P&gt;Which operating system are you using? Which JMP17 are you running? I tested with JMP17.2 on windows 10 and for me there were no box plots and if I change show box plots to 1 it will plot them.&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),
	Model("Main Effect"),
	X(:sex),
	Sigma Multiplier(6),
	Analysis Type("Choose best analysis (EMS REML Bayesian)"),
	Variability Analysis(
		:height,
		Show Range Bars(0),
		Show Cell Means(0),
		Std Dev Chart(0),
		Points Jittered(1),
		Show Box Plots(0)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1727006336357.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/68517i96B3AEE9C2089C4D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1727006336357.png" alt="jthi_1-1727006336357.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Is anything printed to log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do your preferences look?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1727006295255.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/68516iCDBDC7A5B9921AD8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1727006295255.png" alt="jthi_0-1727006295255.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Variability Analysis[1][1] refers to first variability analysis (it is different from Variability Chart and there can be more than one).&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 12:01:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801229#M97684</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-09-22T12:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off box plot in variability chart using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801231#M97685</link>
      <description>&lt;P&gt;17.2?&lt;BR /&gt;&lt;BR /&gt;When Box plots are enabled via the preferences, I can disable them via (JMP 17 &amp;amp; 18):&lt;/P&gt;&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Show Box Plots( 0 )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1727006762427.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/68518iDBB775611D5B4A64/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1727006762427.png" alt="hogi_0-1727006762427.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;As an alternative, you can try&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Ignore Platform Preferences(1).&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I just learned it from&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Scripters Club Recording: JSL in Graph Builder" uid="800152" url="https://community.jmp.com/t5/JMP-Scripters-Club-Discussions/Scripters-Club-Recording-JSL-in-Graph-Builder/m-p/800152#U800152" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 12:10:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801231#M97685</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-22T12:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off box plot in variability chart using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801244#M97688</link>
      <description>&lt;P&gt;Mine is 17.0, and I have the "show box plot" box checked in the preference.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 16:52:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801244#M97688</guid>
      <dc:creator>LatentDataTiger</dc:creator>
      <dc:date>2024-09-22T16:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off box plot in variability chart using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801245#M97689</link>
      <description>&lt;P&gt;any chance to update to JMP 17.2 - or 18.1?&lt;/P&gt;&lt;P&gt;... just to check out if it's the JMP version?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;besides that:&lt;BR /&gt;with 18.1 there is no issue anymore with&amp;nbsp;&lt;LI-MESSAGE title="Find - or not find?" uid="710292" url="https://community.jmp.com/t5/Discussions/Find-or-not-find/m-p/710292#U710292" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;: )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 16:55:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-box-plot-in-variability-chart-using-JSL/m-p/801245#M97689</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-22T16:55:10Z</dc:date>
    </item>
  </channel>
</rss>

