<?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: Is there a way to move the default distributions chart &amp;quot;Quantiles&amp;quot; &amp;amp; &amp;quot;Summary Statistics&amp;quot; into the same column? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-move-the-default-distributions-chart-quot/m-p/666851#M85488</link>
    <description>&lt;P&gt;I would think how to make this a bit more robust, but you can change the Horizontal of the list box which contains those OutlineBoxes to 0&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
dist = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution(
		Column(:height),
		Horizontal Layout(1),
		Vertical(0),
		Normal Quantile Plot(1),
		PpK Capability Labeling(0)
	)
);

lb = ((Report(dist)["Quantiles"] &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; Set Horizontal(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_0-1691524295098.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55659i085C202DCAC7B0DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1691524295098.png" alt="jthi_0-1691524295098.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;If you have to do this only once and you don't want to script, you can also do this interactively using display tree's properties (this doesn't seem to be captured in the script created by JMP)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1691524660488.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55660i6B051E59D03025DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1691524660488.png" alt="jthi_0-1691524660488.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Aug 2023 20:00:50 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2023-08-08T20:00:50Z</dc:date>
    <item>
      <title>Is there a way to move the default distributions chart "Quantiles" &amp; "Summary Statistics" into the same column?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-move-the-default-distributions-chart-quot/m-p/666843#M85487</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Using sample data, I can generate a distribution chart using the following script:&lt;BR /&gt;&lt;BR /&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rep = dt &amp;lt;&amp;lt; Distribution(
	Stack( 1 ),
	Continuous Distribution(
		Column( :height ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Normal Quantile Plot( 1 ),
		PpK Capability Labeling( 0 )
	)
);
Report(rep)[Frame box(1)] &amp;lt;&amp;lt; Row Legend("sex", color(1), marker(0));&lt;BR /&gt;&lt;BR /&gt;//&amp;nbsp;Is&amp;nbsp;there&amp;nbsp;a&amp;nbsp;way&amp;nbsp;to&amp;nbsp;move&amp;nbsp;the&amp;nbsp;"Summary&amp;nbsp;Statistics"&amp;nbsp;box&amp;nbsp;to&amp;nbsp;under&amp;nbsp;"Quantiles"&amp;nbsp;box?&lt;BR /&gt;//&amp;nbsp;I tried&amp;nbsp;changing&amp;nbsp;"Horizontal Layout(1)"&amp;nbsp;to&amp;nbsp;"Vertical&amp;nbsp;Layout&amp;nbsp;(1)",&amp;nbsp;and&amp;nbsp;don't&amp;nbsp;see&amp;nbsp;much&amp;nbsp;difference.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;// Can&amp;nbsp;you&amp;nbsp;suggest&amp;nbsp;what&amp;nbsp;help&amp;nbsp;file&amp;nbsp;that&amp;nbsp;I&amp;nbsp;can&amp;nbsp;read&amp;nbsp;about&amp;nbsp;that?&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Aug 2023 19:41:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-move-the-default-distributions-chart-quot/m-p/666843#M85487</guid>
      <dc:creator>RLo</dc:creator>
      <dc:date>2023-08-08T19:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to move the default distributions chart "Quantiles" &amp; "Summary Statistics" into the same column?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-move-the-default-distributions-chart-quot/m-p/666851#M85488</link>
      <description>&lt;P&gt;I would think how to make this a bit more robust, but you can change the Horizontal of the list box which contains those OutlineBoxes to 0&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
dist = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution(
		Column(:height),
		Horizontal Layout(1),
		Vertical(0),
		Normal Quantile Plot(1),
		PpK Capability Labeling(0)
	)
);

lb = ((Report(dist)["Quantiles"] &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; Set Horizontal(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_0-1691524295098.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55659i085C202DCAC7B0DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1691524295098.png" alt="jthi_0-1691524295098.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;If you have to do this only once and you don't want to script, you can also do this interactively using display tree's properties (this doesn't seem to be captured in the script created by JMP)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1691524660488.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55660i6B051E59D03025DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1691524660488.png" alt="jthi_0-1691524660488.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 20:00:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-move-the-default-distributions-chart-quot/m-p/666851#M85488</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-08-08T20:00:50Z</dc:date>
    </item>
  </channel>
</rss>

