<?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: Script for saving histogram count and midpoint in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75535#M35938</link>
    <description>&lt;P&gt;Thanks you !&lt;/P&gt;</description>
    <pubDate>Mon, 24 Sep 2018 15:05:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-09-24T15:05:39Z</dc:date>
    <item>
      <title>Script for saving histogram count and midpoint</title>
      <link>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75423#M35923</link>
      <description>&lt;P&gt;&amp;nbsp;Hello,&lt;/P&gt;&lt;P&gt;I red the "Histogram count" discussion.&lt;/P&gt;&lt;P&gt;I would like to write a script that does the same : saving in a table the midpoint value and the number of occurence with&amp;nbsp;an adjusted binning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It corresponds to the interactive sequence : Analyse/distribution of a column, adjust chart bin, save number of level and midpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't need to display the chart, only record the values. I did not really found how to make it from Table/Summary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 08:39:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75423#M35923</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-24T08:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Script for saving histogram count and midpoint</title>
      <link>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75440#M35924</link>
      <description>&lt;P&gt;Here is an example on how to generate a summary table with the counts from the bins from the Histogram Platform.&amp;nbsp; It should give you a start on how to do this for your data&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to here(1);

// Open the Big Class data table from the Sample Library
dt=open("$SAMPLE_DATA/Big Class.jmp");

// Run the Distribution Platform without visibility
dis = dt &amp;lt;&amp;lt; Distribution(invisible, Continuous Distribution( Column( :height ) ) );

// Save the Midpoints to the data table
dis &amp;lt;&amp;lt; save ( Level Midpoints);

// Close the invisible window
dis &amp;lt;&amp;lt; close window;

// Use the Summary Platform to create the summary results
dtSum = dt &amp;lt;&amp;lt; Summary(
	Group( :Midpoint height ),
	N( :height ),
	Freq( "None" ),
	Weight( "None" )
);

// Cleanup both data tables
dt &amp;lt;&amp;lt; delete column("Midpoint Height");
dtSum &amp;lt;&amp;lt; delete column("N Rows");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Sep 2018 10:13:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75440#M35924</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-09-24T10:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script for saving histogram count and midpoint</title>
      <link>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75535#M35938</link>
      <description>&lt;P&gt;Thanks you !&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 15:05:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-for-saving-histogram-count-and-midpoint/m-p/75535#M35938</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-24T15:05:39Z</dc:date>
    </item>
  </channel>
</rss>

