<?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 Cumulative column sum by one continuous and one nominal variable in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451871#M69862</link>
    <description>&lt;P&gt;Unfortunately, I am having issues reproducing a formula column from a Graph Builder plot. There are manufactured quantities and concentration data of individual batches in the underlying dataset. In Graph Builder, I can plot concentration data (x) vs manufactured quantities (y) and pick "Cumulative Sum" from the Summary Statistic drop down menu. This gives me an OK overview of how much material of a given concentration range was manufactured in a year. (See the attached table &amp;amp; table scipt therein.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My questions&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How can I recreate the y-axis using a column formula? (I have tried for a couple of hours now, but feel my cerebral capacity is insufficient to solve this. Walking around in circles:)&lt;/LI&gt;&lt;LI&gt;Is there any better way to visualize this data? I found &lt;A href="https://community.jmp.com/t5/Discussions/How-to-export-make-binning-formula-script-in-JSL/td-p/215941" target="_self"&gt;this thread&lt;/A&gt;&amp;nbsp;here explaining binning, but again I would have to summarize the manufactured quantities by the bins, which is something eluding me.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:21:05 GMT</pubDate>
    <dc:creator>Ressel</dc:creator>
    <dc:date>2023-06-11T11:21:05Z</dc:date>
    <item>
      <title>Cumulative column sum by one continuous and one nominal variable</title>
      <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451871#M69862</link>
      <description>&lt;P&gt;Unfortunately, I am having issues reproducing a formula column from a Graph Builder plot. There are manufactured quantities and concentration data of individual batches in the underlying dataset. In Graph Builder, I can plot concentration data (x) vs manufactured quantities (y) and pick "Cumulative Sum" from the Summary Statistic drop down menu. This gives me an OK overview of how much material of a given concentration range was manufactured in a year. (See the attached table &amp;amp; table scipt therein.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My questions&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How can I recreate the y-axis using a column formula? (I have tried for a couple of hours now, but feel my cerebral capacity is insufficient to solve this. Walking around in circles:)&lt;/LI&gt;&lt;LI&gt;Is there any better way to visualize this data? I found &lt;A href="https://community.jmp.com/t5/Discussions/How-to-export-make-binning-formula-script-in-JSL/td-p/215941" target="_self"&gt;this thread&lt;/A&gt;&amp;nbsp;here explaining binning, but again I would have to summarize the manufactured quantities by the bins, which is something eluding me.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:21:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451871#M69862</guid>
      <dc:creator>Ressel</dc:creator>
      <dc:date>2023-06-11T11:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative column sum by one continuous and one nominal variable</title>
      <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451893#M69864</link>
      <description>&lt;P&gt;If I am understanding your question correctly, all you have to do, is to sort your data by concentration, and then create a new column with the following formula&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Col Cumulative Sum( :"Total production, all shifts [some weight quantity]"n, :Year )&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Jan 2022 14:23:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451893#M69864</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-01-17T14:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative column sum by one continuous and one nominal variable</title>
      <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451911#M69865</link>
      <description>&lt;P&gt;Edit: OK, this is working. Thank you. I believed it was not necessary to sort the table for the By Variable. Isn't the concentration a By Variable or am I understanding this incorrectly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for my initial answer, which is now deleted.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:13:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451911#M69865</guid>
      <dc:creator>Ressel</dc:creator>
      <dc:date>2022-01-17T15:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative column sum by one continuous and one nominal variable</title>
      <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451913#M69866</link>
      <description>&lt;P&gt;The Col Cumulative Sum() function accumulates row by row, for each specified By variable. Therefore you need to sort by Concentration, but not by Year.&amp;nbsp; You want the values to cumulate from low concentration to high concentration.&amp;nbsp; The Col Cumulative Sum() function handles the separation by Year.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:18:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451913#M69866</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-01-17T15:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative column sum by one continuous and one nominal variable</title>
      <link>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451915#M69867</link>
      <description>&lt;P&gt;It's still surprising that the Graph Builder manages this ad hoc, without sorting. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 16:19:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cumulative-column-sum-by-one-continuous-and-one-nominal-variable/m-p/451915#M69867</guid>
      <dc:creator>Ressel</dc:creator>
      <dc:date>2022-01-17T16:19:06Z</dc:date>
    </item>
  </channel>
</rss>

