<?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: data filter for several graph from a same data table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48489#M27592</link>
    <description>&lt;P&gt;Big thx!! I'll try it tomorrow in company!&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2017 14:54:32 GMT</pubDate>
    <dc:creator>Leo_Huang</dc:creator>
    <dc:date>2017-12-12T14:54:32Z</dc:date>
    <item>
      <title>data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48483#M27587</link>
      <description>&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to plot several graphs with the same data source in a same window.&amp;#8;&amp;#8;Here I put a data filter before the plotting.But it dosen't work.Could anyone help??!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt= Open( "$SAMPLE_DATA/Big Class.jmp" );
 
New Windows("mt report",
  nwBB = Border box(
 
 dt&amp;lt;&amp;lt; Data Filter(
   Add Filter( columns( :group ), Where( :group == 1 ) )
);
 
 
V List Box(
Graph Builder(.....);
Graph Builder(.....);
)
)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 16:30:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48483#M27587</guid>
      <dc:creator>Leo_Huang</dc:creator>
      <dc:date>2017-12-12T16:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48484#M27588</link>
      <description>&lt;P&gt;Try something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

nw = new window("Test 2 Graphs + Data Filter",
	vlistbox(
		dt &amp;lt;&amp;lt; Graph Builder(
			Size( 518, 445 ),
			Show Control Panel( 0 ),
			Variables( X( :age ), Y( :sex ), Overlay( :sex ) ),
			Elements( Points( X, Y, Legend( 9 ) ) ),
			Local Data Filter( Add Filter( columns( :height ) ) )
		),
		dt &amp;lt;&amp;lt; Graph Builder(
			Size( 526, 451 ),
			Show Control Panel( 0 ),
			Variables( X( :weight ), Y( :height ) ),
			Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) ),
			Local Data Filter( Add Filter( columns( :sex ) ) )
		),
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LDFGBx2.png" style="width: 892px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8641i083221E3CE2092AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="LDFGBx2.png" alt="LDFGBx2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 14:47:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48484#M27588</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-12-12T14:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48487#M27590</link>
      <description>&lt;P&gt;See the script below for the proper ordering of the elements to make the script 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" );
 
New Window( "mt report",
	nwBB = Border Box(
		V List Box(
			dt &amp;lt;&amp;lt; Data Filter( Add Filter( columns( :group ), Where( :group == 1 ) ) ),
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 528, 454 ),
				Show Control Panel( 0 ),
				Variables( X( :weight ), Y( :height ) ),
				Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
			),
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 528, 454 ),
				Show Control Panel( 0 ),
				Variables( X( :height ), Y( :weight ) ),
				Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Dec 2017 14:51:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48487#M27590</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-12-12T14:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48488#M27591</link>
      <description>&lt;P&gt;So if &amp;#8;I want to get the plot with column(group) value=1,I have to code like this??&lt;/P&gt;&lt;PRE&gt;Elements(...)&lt;BR /&gt;Local Data Filter(Add Filter( columns( :group ), Where( :group == 1 ) ))),&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 14:51:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48488#M27591</guid>
      <dc:creator>Leo_Huang</dc:creator>
      <dc:date>2017-12-12T14:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48489#M27592</link>
      <description>&lt;P&gt;Big thx!! I'll try it tomorrow in company!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 14:54:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/48489#M27592</guid>
      <dc:creator>Leo_Huang</dc:creator>
      <dc:date>2017-12-12T14:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: data filter for several graph from a same data table</title>
      <link>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/393005#M64333</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that in JMP16, this script would not have the data filter included in the report (as was the case for JMP15) but rather in its own data filter window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions to get a result similar to JMP 15?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sebastien&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 00:26:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/data-filter-for-several-graph-from-a-same-data-table/m-p/393005#M64333</guid>
      <dc:creator>Sburel</dc:creator>
      <dc:date>2021-06-14T00:26:21Z</dc:date>
    </item>
  </channel>
</rss>

