<?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: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943854#M109591</link>
    <description>&lt;P&gt;You click on the grey triangle to collapse the outline box (make it hide the filters), then you set the title to empty.&lt;/P&gt;
&lt;P&gt;From this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1776952382493.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/100673i438233A899DD6B01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1776952382493.png" alt="jthi_0-1776952382493.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;to this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1776952387522.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/100674i81415063044A3409/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1776952387522.png" alt="jthi_1-1776952387522.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I don't have JMP16 but the script is most likely quite close to this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size(658, 555),
	Show Control Panel(0),
	Variables(X(:height), Y(:weight)),
	Elements(Points(X, Y, Legend(7)), Smoother(X, Y, Legend(8))),
	Local Data Filter(
		Close Outline(1),
		Title(""),
		Add Filter(
			columns(:name),
			Where(
				:name == {"ALFRED", "ALICE", "AMY", "BARBARA", "CAROL", "CHRIS",
				"CLAY", "DANNY", "DAVID", "EDWARD", "ELIZABETH"}
			),
			Display(
				:name,
				N Items(15),
				Find(Set Text(""), Contains Terms(1), Contains Phrase(0))
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 23 Apr 2026 13:53:24 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2026-04-23T13:53:24Z</dc:date>
    <item>
      <title>JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943796#M109582</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have the following JSL code that creates a Graph Builder plot inside a &lt;CODE class="hljs"&gt;For&lt;/CODE&gt; loop. It works correctly in &lt;STRONG&gt;JMP 14&lt;/STRONG&gt; but produces wrong output in &lt;STRONG&gt;JMP 16&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;JMP 14 Code (works correctly):&lt;/STRONG&gt;&lt;/P&gt;
&lt;DIV class="code-wrapper" data-v-136e9b6a=""&gt;
&lt;DIV data-v-136e9b6a=""&gt;
&lt;PRE data-v-136e9b6a=""&gt;&lt;CODE class="language-javascript hljs" data-v-136e9b6a=""&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;gb = Expr(
    dt &amp;lt;&amp;lt; Graph Builder(
        Size( 635, 338 ),
        Show Control Panel( 0 ),
        Variables( X( :Time Point Months ), Y( :Result ), Overlay( :Batch ) ),
        Elements(
            Points( X, Y, Legend( 1 ) ),
            Line Of Fit( X, Y, Legend( 2 ), Confidence of Fit( 0 ) )
        ),
        Local Data Filter(
            invisible,
            Add Filter(
                columns( :Component, :Batch, :Source Table ),
                Where( :Component == numPar[i] ),
                Where( :Batch == {cyc, bat}),
                Where( :Source Table == dt_name )
            )
        ),
        SendToReport(
            Dispatch(
                {},
                "Time Point Months",
                ScaleBox,
                {Min( -0.1 ), Max( maxvalts ), Inc( 2 ), Minor Ticks( 1 )}
            ),
            Dispatch(
                {},
                "graph title",
                TextEditBox,
                {Set Text( numPar[i] || " vs. Time Point" )}
            ),
            Dispatch( {},
                "Y title", 
                TextEditBox, 
                {Set Text( yTitleText)}
            ),
            Dispatch(
                {},
                "Result",
                ScaleBox,
                {Format( "Fixed Dec", 10, 3 ), 
                Min( Eval( minval )), 
                Max( Eval( maxval )), 
                Inc( Eval( (maxval - minval) / 10 ))}
            )
        )
    )
);
col1 &amp;lt;&amp;lt; Append(gb);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did the Graph Builder syntax or Local Data Filter behavior change between JMP 14 and JMP 16? How should I rewrite this to work correctly in JMP 16?&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;PRE data-v-136e9b6a=""&gt;&lt;CODE class="language-javascript hljs" data-v-136e9b6a=""&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 23 Apr 2026 11:41:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943796#M109582</guid>
      <dc:creator>ConvergentWhale</dc:creator>
      <dc:date>2026-04-23T11:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943817#M109584</link>
      <description>&lt;P&gt;Create the plot manually in JMP16 and copy the script from graph builder.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 11:49:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943817#M109584</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-04-23T11:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943841#M109585</link>
      <description>&lt;P&gt;i plot it mannualy and the script is this one: ( the plot output has been attached as"1")&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Graph Builder(
	Size( 635, 580 ),
	Show Control Panel( 0 ),
	Variables( X( :Time Point Months ), Y( :Result ), Overlay( :Batch ) ),
	Elements(
		Points( X, Y, Legend( 1 ) ),
		Line Of Fit( X, Y, Legend( 2 ), Confidence of Fit( 0 ) )
	),
	Local Data Filter(
		Close Outline( 1 ),
		Add Filter(
			columns( :Component, :Batch, :Source Table ),
			Where( :Component == "Bacterial Endotoxin" ),
			Where( :Source Table == "Subset of Stab_IcoSema_test1_test2_test4" ),
			Display( :Component, N Items( 15 ), Find( Set Text( "" ) ) ),
			Display( :Batch, N Items( 6 ) ),
			Display( :Source Table, N Items( 2 ), "List Display" )
		)
	),
	SendToReport(
		Dispatch(
			{},
			"Time Point Months",
			ScaleBox,
			{Min( -0.1 ), Max( 19.395 ), Inc( 2 ), Minor Ticks( 1 )}
		),
		Dispatch( {}, "Result", ScaleBox, {Format( "Fixed Dec", 10, 3 )} ),
		Dispatch(
			{},
			"graph title",
			TextEditBox,
			{Set Text( "Bacterial Endotoxin vs. Time Point" )}
		),
		Dispatch(
			{},
			"Y title",
			TextEditBox,
			{Set Text( "Content of semaglutide" )}
		)
	)
);
&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;The thing is that i would like to remove completely the local data filter , but when i remove it i have this output : screenshot 2&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:18:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943841#M109585</guid>
      <dc:creator>ConvergentWhale</dc:creator>
      <dc:date>2026-04-23T13:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943842#M109586</link>
      <description>&lt;P&gt;so how can i make it invisible?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:19:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943842#M109586</guid>
      <dc:creator>ConvergentWhale</dc:creator>
      <dc:date>2026-04-23T13:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943846#M109589</link>
      <description>&lt;P&gt;You would like to hide it completely? You can collapse the outline box and then set the outline box title to "" for example. It should get you quite close&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:45:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943846#M109589</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-04-23T13:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943847#M109590</link>
      <description>&lt;P&gt;how can i collapse it? what do you mean ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;dt &amp;lt;&amp;lt; Graph Builder(
						
						Size( 635, 338 ),
						Show Control Panel( 0 ),
						Variables( X( :Time Point Months ), Y( :Result ), Overlay( :Batch ) ),
						Elements(
							Points( X, Y, Legend( 1 ) ),
							Line Of Fit( X, Y, Legend( 2 ), Confidence of Fit( 0 ) )
						),
						Local Data Filter(
							Close Outline( 1 ),
							Add Filter(
								columns( :Component, :Batch, :Source Table ),
								Where( :Component == numPar[i] ),
								Where( :Batch == {cyc, bat}),
								Where( :Source Table == dt_name )
							)
						),
						SendToReport(
							Dispatch(
								{},
								"Time Point Months",
								ScaleBox,
								{Min( -0.1 ), Max( maxvalts ), Inc( 2 ), Minor Ticks( 1 )}
							),
							Dispatch(
								{},
								"graph title",
								TextEditBox,
								
								{Set Text( numPar[i] || " vs. Time Point" )}
							),
							Dispatch( {},
							 "Y title", 
							 TextEditBox, 
							 {Set Text( yTitleText)}
							),
							 Dispatch(
							{},
							"Result",
							ScaleBox,
							{Format( "Fixed Dec", 10, 3 ), Min( Eval( minval )), Max( Eval( maxval )), Inc( Eval( (maxval - minval) / 10 ))},
							)
						)
					)&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:48:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943847#M109590</guid>
      <dc:creator>ConvergentWhale</dc:creator>
      <dc:date>2026-04-23T13:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Community Question Title:  Graph Builder with Local Data Filter producing wrong output in JMP 16 - works in JMP 14</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943854#M109591</link>
      <description>&lt;P&gt;You click on the grey triangle to collapse the outline box (make it hide the filters), then you set the title to empty.&lt;/P&gt;
&lt;P&gt;From this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1776952382493.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/100673i438233A899DD6B01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1776952382493.png" alt="jthi_0-1776952382493.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;to this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1776952387522.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/100674i81415063044A3409/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1776952387522.png" alt="jthi_1-1776952387522.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I don't have JMP16 but the script is most likely quite close to this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size(658, 555),
	Show Control Panel(0),
	Variables(X(:height), Y(:weight)),
	Elements(Points(X, Y, Legend(7)), Smoother(X, Y, Legend(8))),
	Local Data Filter(
		Close Outline(1),
		Title(""),
		Add Filter(
			columns(:name),
			Where(
				:name == {"ALFRED", "ALICE", "AMY", "BARBARA", "CAROL", "CHRIS",
				"CLAY", "DANNY", "DAVID", "EDWARD", "ELIZABETH"}
			),
			Display(
				:name,
				N Items(15),
				Find(Set Text(""), Contains Terms(1), Contains Phrase(0))
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Apr 2026 13:53:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Community-Question-Title-Graph-Builder-with-Local-Data/m-p/943854#M109591</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-04-23T13:53:24Z</dc:date>
    </item>
  </channel>
</rss>

