<?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: Some of the data columns won't appear as box plots in the graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769266#M94979</link>
    <description>&lt;P&gt;I see, thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2024 18:25:23 GMT</pubDate>
    <dc:creator>ARETI052</dc:creator>
    <dc:date>2024-06-28T18:25:23Z</dc:date>
    <item>
      <title>Some of the data columns won't appear as box plots in the graph</title>
      <link>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769254#M94977</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names Default To Here(1);

MyGraph = Function({yCol, xCol, gpx}, {default local},
    vars = Eval Expr(Variables(
        X(Expr(xCol)),
        Group X(Expr(gpx))
    ));
    
    pts = Expr(Box Plot(X));
    
    For(j = 1, j &amp;lt;= Min(8, N Items(yCol)), j++,
        Insert Into(vars, Eval Expr(Y(Expr(yCol[j]))));
    );
    
    gb = Expr(
        Graph Builder(
            Size(1255, 981),
            Show Control Panel(0),
            // Variables section will be inserted here
            Elements(Box Plot(X, Y(1), Y(2), Y(3), Y(4), Y(5), Y(6), Y(7), Y(8), Legend(11))),
            Local Data Filter(
                Add Filter(
                    columns(:Test Stage, :Sublot, :Temperature, :Soft Bin),
                    Display(:Test Stage, N Items(4)),
                    Display(:Soft Bin, N Items(15))
                )
            )
        )
    );
    Insert Into(gb, Name Expr(vars));
    
    VListBox(gb)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code attached is not won't plot the Y - data columns as box plots after the 2nd one, and all the box plots wont share the same Y-axis. I want to make sure that the all the columns are plotted as box plots and share the same Y-axis. The code was working fine for plotting points, is plotting box plots different from plotting the points?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ARETI052_0-1719597808493.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65702i98C68854FC2A2DF4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ARETI052_0-1719597808493.png" alt="ARETI052_0-1719597808493.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 18:03:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769254#M94977</guid>
      <dc:creator>ARETI052</dc:creator>
      <dc:date>2024-06-28T18:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Some of the data columns won't appear as box plots in the graph</title>
      <link>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769265#M94978</link>
      <description>&lt;P&gt;the difference between &lt;STRONG&gt;individual subplots&lt;/STRONG&gt; and &lt;STRONG&gt;same subplot&lt;/STRONG&gt; is explained here:&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="How to let user choose multiple columns for graph builder" uid="768754" url="https://community.jmp.com/t5/Discussions/How-to-let-user-choose-multiple-columns-for-graph-builder/m-p/768754#U768754" 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;&lt;P&gt;The Trick:&lt;BR /&gt;"&lt;FONT face="courier new,courier"&gt;position(1)&lt;/FONT&gt;" - if you don't specify it to be 1, with every new Y variable position is incremented automatically and the column will be added with a new subplot.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1719598647243.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65703i38E73F89CF1212AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1719598647243.png" alt="hogi_0-1719598647243.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 18:55:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769265#M94978</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-06-28T18:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Some of the data columns won't appear as box plots in the graph</title>
      <link>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769266#M94979</link>
      <description>&lt;P&gt;I see, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 18:25:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Some-of-the-data-columns-won-t-appear-as-box-plots-in-the-graph/m-p/769266#M94979</guid>
      <dc:creator>ARETI052</dc:creator>
      <dc:date>2024-06-28T18:25:23Z</dc:date>
    </item>
  </channel>
</rss>

