<?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 Calculator Add in to Calculate Statistics As i Select and Unselect Rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392906#M64316</link>
    <description>&lt;P&gt;Much of what you want to do is just built into JMP.&amp;nbsp; Here is one example, that just opens the Tabulate Platform and using it's built in functionality, provides row selection/unselection coupled with statistical calculations&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1623473266979.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33504iCAA3446CAA1F5C9B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1623473266979.png" alt="txnelson_0-1623473266979.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I developed this running JMP interactively, and then just specified to JMP, to provide me with a script to be able to run it as needed.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$sample_data/semiconductor capability.jmp");

Tabulate(
	Add Table(
		Column Table( Statistics( N, Mean, Std Dev, Min, Max ) ),
		Row Table( Analysis Columns( :PNP1, :PNP2, :NPN2, :PNP3, :IVP1 ) )
	),
	Local Data Filter(
		Add Filter(
			columns( :lot_id, :wafer, :SITE ),
			Display( :lot_id, N Items( 13 ) ),
			Display( :wafer, N Items( 15 ) ),
			Display( :SITE, N Items( 5 ) )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suggest you take the time to read the Discovering JMP documentation under the Help pull down menu as a good start towards education of JMP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's also very simple to throw the platforms you are interested in, into a Dashboard, which basically creates an application that you can used like your proposed Addin.&amp;nbsp; I suggest that you find the platforms that provide you with the output tables and graphics you want, and then you move them into a Dashboard.&lt;/P&gt;</description>
    <pubDate>Sat, 12 Jun 2021 06:48:13 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2021-06-12T06:48:13Z</dc:date>
    <item>
      <title>Dynamic Calculator Add in to Calculate Statistics As i Select and Unselect Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392892#M64315</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am looking for a add-in to JMP to calculate the basic statistics (quantiles, means, medians, stdevs, ranges) of my tables automatically based on the rows/columns I am picking and changing in a different window, charts are a bonus, but just come comparison tables would be great now; Rather then plotting graphs over and over. Any recommendations?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:15:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392892#M64315</guid>
      <dc:creator>Italianbaby757</dc:creator>
      <dc:date>2023-06-11T11:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Calculator Add in to Calculate Statistics As i Select and Unselect Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392906#M64316</link>
      <description>&lt;P&gt;Much of what you want to do is just built into JMP.&amp;nbsp; Here is one example, that just opens the Tabulate Platform and using it's built in functionality, provides row selection/unselection coupled with statistical calculations&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1623473266979.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33504iCAA3446CAA1F5C9B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1623473266979.png" alt="txnelson_0-1623473266979.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I developed this running JMP interactively, and then just specified to JMP, to provide me with a script to be able to run it as needed.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$sample_data/semiconductor capability.jmp");

Tabulate(
	Add Table(
		Column Table( Statistics( N, Mean, Std Dev, Min, Max ) ),
		Row Table( Analysis Columns( :PNP1, :PNP2, :NPN2, :PNP3, :IVP1 ) )
	),
	Local Data Filter(
		Add Filter(
			columns( :lot_id, :wafer, :SITE ),
			Display( :lot_id, N Items( 13 ) ),
			Display( :wafer, N Items( 15 ) ),
			Display( :SITE, N Items( 5 ) )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suggest you take the time to read the Discovering JMP documentation under the Help pull down menu as a good start towards education of JMP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's also very simple to throw the platforms you are interested in, into a Dashboard, which basically creates an application that you can used like your proposed Addin.&amp;nbsp; I suggest that you find the platforms that provide you with the output tables and graphics you want, and then you move them into a Dashboard.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 06:48:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392906#M64316</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-06-12T06:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Calculator Add in to Calculate Statistics As i Select and Unselect Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392923#M64319</link>
      <description>&lt;P&gt;To add to Jim's good advice, you should also consider local data filters (or global data filters) and using the Automatic Recalc feature offered in many platforms.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 13:17:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392923#M64319</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2021-06-12T13:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Calculator Add in to Calculate Statistics As i Select and Unselect Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392958#M64325</link>
      <description>&lt;P&gt;Dear Gentlemen,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the recommendations, I will check them out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About looking through "Help", yes I do spend time looking through them, however there was nothing I felt was good enough for my purpose "recalc" feature for instance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After all, is not this community and site meant to help fellow users and learners how to efficiently use this tool? :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jun 2021 06:53:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Dynamic-Calculator-Add-in-to-Calculate-Statistics-As-i-Select/m-p/392958#M64325</guid>
      <dc:creator>Italianbaby757</dc:creator>
      <dc:date>2021-06-13T06:53:29Z</dc:date>
    </item>
  </channel>
</rss>

