<?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: Adding local data filter to a output window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724771#M90801</link>
    <description>&lt;P&gt;Hi Jarmo, thank you very much for the response. I'm still seeing these two issues:&lt;/P&gt;&lt;P&gt;1. I did exact same thing as your example (local data filter within the contour plot), however it doesn't show up in the output window still. I tried to output same filter as a data filter and was able to do that. In filter A and filterB, I have IDs in character. This is what I tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;G_graph_A = Outline Box ("Graph A",
gb = DT &amp;lt;&amp;lt; Contour Plot(
X( x, y ),
Y( Value ),
Local Data filter ( Add Filter( columns(filterA, filterB),
Display( filterA, Size( 112, 530 ), Check Box Display ),
Display( filterB, Size( 144, 926 ), Check Box Display )),
)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. For the tab page box, I tried yours and it's not responding as a function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Feb 2024 08:10:56 GMT</pubDate>
    <dc:creator>LawleyDeer662</dc:creator>
    <dc:date>2024-02-20T08:10:56Z</dc:date>
    <item>
      <title>Adding local data filter to a output window</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724766#M90798</link>
      <description>&lt;P&gt;Hi folks, I'm trying to build a data dashboard from multiple graphs. In the output windows, there are a few different graphs that I'm pulling from different scripts. One of them I need to add in local data filter in th graph. Here is how I'm doing it currently:&lt;/P&gt;&lt;P&gt;1. in the graph A script, I'm putting it as&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;G_graph_A = Outline Box ("Graph A",
DT &amp;lt;&amp;lt; Contour Plot(
X( x, y ),
Y( Value ),
Local Data filter (&amp;nbsp;Add Filter( columns(filterA, filterB),
Display( filterA, Size( 112, 530 ), Check Box Display ),
Display( filterB, Size( 144, 926 ), Check Box Display )))
));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. in output window script, I'm writing it as:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;REPORT_WINDOW = New Window( "DATA",
	Tab Box("DATA",
		V List Box( DATE, G_graph_A, G_graph_B)
	));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However in the output window, only graph is showing and graph A local data filter is not showing. Could you please help to take a look at what might have go wrong?&lt;/P&gt;&lt;P&gt;Also, I'm wondering how I could generate another tab box separately for G_graph_B?&lt;/P&gt;&lt;P&gt;Thank you very much for the help!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 06:46:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724766#M90798</guid>
      <dc:creator>LawleyDeer662</dc:creator>
      <dc:date>2024-02-20T06:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Adding local data filter to a output window</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724768#M90799</link>
      <description>&lt;P&gt;What do you have in filterA and filterB?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

ob = Outline Box("Graph A",
	gb = dt &amp;lt;&amp;lt; Graph Builder(
		Size(525, 586),
		Show Control Panel(0),
		Variables(X(:weight), Y(:height), Overlay(:sex)),
		Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11))),
		Local Data Filter(
			Add Filter(
				columns(:name, :age),
				Display(:name, N Items(15), Find(Set Text(""))),
				Display(:age, N Items(6))
			)
		)
	)
);

nw= New Window("DATA", 
	Tab Box(
		Tab Page Box("DATA", 
			V List Box(ob)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Use Tab Page Box with Tab Box to create separate tabs&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 06:57:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724768#M90799</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-20T06:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding local data filter to a output window</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724771#M90801</link>
      <description>&lt;P&gt;Hi Jarmo, thank you very much for the response. I'm still seeing these two issues:&lt;/P&gt;&lt;P&gt;1. I did exact same thing as your example (local data filter within the contour plot), however it doesn't show up in the output window still. I tried to output same filter as a data filter and was able to do that. In filter A and filterB, I have IDs in character. This is what I tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;G_graph_A = Outline Box ("Graph A",
gb = DT &amp;lt;&amp;lt; Contour Plot(
X( x, y ),
Y( Value ),
Local Data filter ( Add Filter( columns(filterA, filterB),
Display( filterA, Size( 112, 530 ), Check Box Display ),
Display( filterB, Size( 144, 926 ), Check Box Display )),
)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. For the tab page box, I tried yours and it's not responding as a function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 08:10:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-local-data-filter-to-a-output-window/m-p/724771#M90801</guid>
      <dc:creator>LawleyDeer662</dc:creator>
      <dc:date>2024-02-20T08:10:56Z</dc:date>
    </item>
  </channel>
</rss>

