<?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: Application Builder and Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/706786#M89125</link>
    <description>&lt;P&gt;In JMP Application Builder, you can use interactive elements like sliders to link with Graph Builder. You can define parameters in your script and connect them to sliders. This way, you can update graphs dynamically.&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;In JMP Application Builder, you can use interactive elements like sliders to link with Graph Builder. You can define parameters in your script and connect them to sliders. This way, you can update graphs dynamically.&amp;nbsp;I was worried about the timeliness of my research paper, but my colleague urged me to get in touch with this &lt;A href="https://lastminutewriting.com/research-paper" target="_blank"&gt;https://lastminutewriting.com/research-paper&lt;/A&gt; urgent research paper writer writing service, and from the moment I reached out, they assured me that they could handle it. And boy did they deliver! Not only did they deliver a research paper of the highest quality, but they delivered it so quickly that I barely missed my deadline. Their professionalism and dedication to producing high-quality work are second to none. I would highly recommend them to anyone."&lt;/LI-SPOILER&gt;</description>
    <pubDate>Mon, 18 Dec 2023 14:17:33 GMT</pubDate>
    <dc:creator>EricTaunton</dc:creator>
    <dc:date>2023-12-18T14:17:33Z</dc:date>
    <item>
      <title>Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705150#M88964</link>
      <description>&lt;P&gt;Hello - I'm on day 1 of application builder, so this might be completely obvious. However, I'm not seeing anything about it on google search.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to manipulate some graphs in a way that graph builder is currently incapable of. I can program the application to feed the data to a bivariate plot, and redo it over and over, no problem. However, I'm not quite sure how to talk back and forth with graph builder. I'd like to have a function that calculates a manipulation of the data sent to graph builder in real time, and then have a slider to affect a constant in that function, and it dynamically updates. Am I stuck with the redo and redo route (and maybe teach myself the JMP workflow builder, since I think that might help), or is there a way to actually mess around with the internals of Graph builder?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Dec 2023 03:24:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705150#M88964</guid>
      <dc:creator>ehchandlerjr</dc:creator>
      <dc:date>2023-12-03T03:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705160#M88966</link>
      <description>&lt;P&gt;There are a full range of capabilities within JMP to programmatically set and receive messages to each of the platforms, such as Graph Builder.&amp;nbsp; You can also add sliders etc. that pass messages to the platforms.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The best documentation on this ability is in the "Display Tree" section in the Scripting Guide.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Dec 2023 04:52:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705160#M88966</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-12-03T04:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705193#M88969</link>
      <description>&lt;P&gt;A small appetizer:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1701593379052.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59247iD56D9467DED083A2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1701593379052.png" alt="hogi_0-1701593379052.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Try( exponent, dt &amp;lt;&amp;lt; New Table Variable( "exponent", 1 ) );
dt &amp;lt;&amp;lt; new column("weight 2", Formula(:weight ^ exponent )); // added after the comment
New Window( "test",
	sb = Slider Box( 0.7, 1.2, sliderValue, dt &amp;lt;&amp;lt; set table variable("exponent", sliderValue) ), 
	gb = dt &amp;lt;&amp;lt; Graph Builder(
		Size( 437, 413 ),
		Lock Scales( 1 ),
		Show Control Panel( 0 ),
		Variables( X( :height ), Y( :weight 2 ), Overlay( :sex ) ),
		Elements(
			Points( X, Y, Legend( 1 ) ),
			Smoother( X, Y, Legend( 2 ) )
		)
	);	
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 12:21:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705193#M88969</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-12-04T12:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705197#M88970</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/9102"&gt;@ehchandlerjr&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Am I stuck with the redo and redo route&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;GraphBuilder updates the graph automatically when there are changes in the data table.&lt;BR /&gt;For Bivariate, you can enable &lt;FONT face="courier new,courier"&gt;automatic recalc:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1701593941051.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59249iFF9FDC4FB22D592D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1701593941051.png" alt="hogi_0-1701593941051.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>Sun, 03 Dec 2023 08:59:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705197#M88970</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-12-03T08:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705384#M88992</link>
      <description>&lt;P&gt;Small typo - change ":weight 2" to ":weight"&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 12:11:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705384#M88992</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2023-12-04T12:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705385#M88993</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4550"&gt;@pmroz&lt;/a&gt;&amp;nbsp;for the comment.&lt;BR /&gt;I forgot to copy the column formula for manually added&amp;nbsp;:weight2 to the script. -&amp;gt; added now.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 12:22:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/705385#M88993</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-12-04T12:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Application Builder and Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/706786#M89125</link>
      <description>&lt;P&gt;In JMP Application Builder, you can use interactive elements like sliders to link with Graph Builder. You can define parameters in your script and connect them to sliders. This way, you can update graphs dynamically.&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;In JMP Application Builder, you can use interactive elements like sliders to link with Graph Builder. You can define parameters in your script and connect them to sliders. This way, you can update graphs dynamically.&amp;nbsp;I was worried about the timeliness of my research paper, but my colleague urged me to get in touch with this &lt;A href="https://lastminutewriting.com/research-paper" target="_blank"&gt;https://lastminutewriting.com/research-paper&lt;/A&gt; urgent research paper writer writing service, and from the moment I reached out, they assured me that they could handle it. And boy did they deliver! Not only did they deliver a research paper of the highest quality, but they delivered it so quickly that I barely missed my deadline. Their professionalism and dedication to producing high-quality work are second to none. I would highly recommend them to anyone."&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 18 Dec 2023 14:17:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-Builder-and-Graph-Builder/m-p/706786#M89125</guid>
      <dc:creator>EricTaunton</dc:creator>
      <dc:date>2023-12-18T14:17:33Z</dc:date>
    </item>
  </channel>
</rss>

