<?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: Dynamic chart creator in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284258#M54910</link>
    <description>&lt;P&gt;Turns out I was using JMP12, where the Automatic recalc option was not available in the preferences.&lt;/P&gt;&lt;P&gt;I switched to JMP14 and now I see it.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 05 Aug 2020 12:56:14 GMT</pubDate>
    <dc:creator>Yotam</dc:creator>
    <dc:date>2020-08-05T12:56:14Z</dc:date>
    <item>
      <title>Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284131#M54877</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to write a script that helps the user to create&amp;nbsp;some required charts with less mouse clicks.&lt;/P&gt;&lt;P&gt;For example, typically when I'm making charts manually, I have to first create X-Y graph, then select legend, then click on Automatic recalc, Unselected faded, group by, and put splines. This turns out to be very tedious.&lt;/P&gt;&lt;P&gt;So basically what I want to write is a script that the user would only have to select Y columns, X columns, Legend column and Group By column. And the script would do the rest.&lt;/P&gt;&lt;P&gt;Clarification: Obviously I know how to script this for a given data table, where I know the columns names and the charts I want to create. What I want here is to enable the user to select the columns he wants in ANY given data table he is working on. I suppose the solution would require loops and variables.&lt;/P&gt;&lt;P&gt;I hope I explained myself clearly.&lt;/P&gt;&lt;P&gt;Any help and guidance would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:04:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284131#M54877</guid>
      <dc:creator>Yotam</dc:creator>
      <dc:date>2023-06-11T11:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284137#M54878</link>
      <description>It sounds to me, what you really need to do, is to change the Preferences for each of the Platform's you and your users use.  Then when you or a user used the normal Dialog Screen for a given Platform, it would have all of the desired selections already being displayed.&lt;BR /&gt;     File==&amp;gt;Preferences==&amp;gt;Platforms</description>
      <pubDate>Tue, 04 Aug 2020 17:56:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284137#M54878</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-04T17:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284141#M54880</link>
      <description>&lt;P&gt;Find an example (data set), set up the plot exactly the way you want, save the script to a script window, then remove the Y() and X() role arguments. Run the script. It should present the default launch dialog where the user can enter the current variables into the appropriate role. Click OK and the other features should be active.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 18:18:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284141#M54880</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-08-04T18:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284213#M54897</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;I tried it and it worked. Follow up question: Is there a way to also remove the group by and legend column specification, in order to enable the user to choose?&lt;/P&gt;&lt;P&gt;For example, in the script below. When I removed X and Y like you suggested, I did get the prompt to choose them.But can I get a prompt for group by and legend as well?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate(
	Y( :y_column),
	X( :x_column ),
	group by(:group_column),
	Automatic Recalc( 1 ),
	Fit spline (0.1, Standardized, {Report(0)}),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Marker Selection Mode( "Unselected Faded" ),
			Row Legend(
				legend_column,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 06:32:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284213#M54897</guid>
      <dc:creator>Yotam</dc:creator>
      <dc:date>2020-08-05T06:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284215#M54898</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;I guess it could also be a solution. The question is whether I can pre define there everything I need.&lt;/P&gt;&lt;P&gt;So a follow up question - Where can I define the following:&lt;/P&gt;&lt;P&gt;1. Automatic recalc for X-Y plot &amp;amp; variability chart?&lt;/P&gt;&lt;P&gt;2. When I do fit spline -&amp;gt; other,&amp;nbsp;is there a way that the Standardize X box would be checked by default?&lt;/P&gt;&lt;P&gt;I looked it up but couldn't find it.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate(
	Y( :y_column),
	X( :x_column ),
	group by(:group_column),
	Automatic Recalc( 1 ),
	Fit spline (0.1, Standardized, {Report(0)}),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Marker Selection Mode( "Unselected Faded" ),
			Row Legend(
				legend_column,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Aug 2020 07:10:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284215#M54898</guid>
      <dc:creator>Yotam</dc:creator>
      <dc:date>2020-08-05T07:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284226#M54903</link>
      <description>&lt;P&gt;The Automatic Recalc preference is available for both the Bivariate and Variability Chart&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="auto.PNG" style="width: 537px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26000i9C6B60EF9F98EDBE/image-dimensions/537x390?v=v2" width="537" height="390" role="button" title="auto.PNG" alt="auto.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The ability to Fit a Spline is there, but it does not have the "Standardize" checkbox surfaced in the Preferences.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 09:28:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284226#M54903</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-05T09:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic chart creator</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284258#M54910</link>
      <description>&lt;P&gt;Turns out I was using JMP12, where the Automatic recalc option was not available in the preferences.&lt;/P&gt;&lt;P&gt;I switched to JMP14 and now I see it.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 12:56:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-chart-creator/m-p/284258#M54910</guid>
      <dc:creator>Yotam</dc:creator>
      <dc:date>2020-08-05T12:56:14Z</dc:date>
    </item>
  </channel>
</rss>

