<?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: How to get a column to return percentile in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830181#M101269</link>
    <description>&lt;P&gt;The Quantile() function will give you what you want if you are looking to calculate your percentiles for an array of data.&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);

A = [1.2, 1.5, 10, 25, 31, 40, 50, 99, 1000, 5000, 25000, 100000];

P50 = Quantile( .5, A );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This can also be used against a column of data in a data table if you reference the data table as a matrix of data&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);

dt = open("$SAMPLE_DATA/Big Class.jmp");

P75 = Quantile( .75, dt[0,4]);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Feb 2025 17:35:34 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2025-02-01T17:35:34Z</dc:date>
    <item>
      <title>How to get a column to return percentile</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830168#M101266</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working to get P50, P90 and P95 data into a data set based on an array of numbers .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that I can run a distribution and it will show the values but I am trying to do this for too many files to make it feasible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a formula or other way to get a column that returns with the values I am looking for based on a specific delimiter such as batch? I am currently using JMP 15.0 and any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2025 16:15:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830168#M101266</guid>
      <dc:creator>IslandDelverGo</dc:creator>
      <dc:date>2025-02-01T16:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column to return percentile</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830179#M101267</link>
      <description>&lt;P&gt;Have you tried with Summary platform?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1738426690940.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/72452iB92AA5177A098CDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1738426690940.png" alt="jthi_0-1738426690940.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Optionally you can use Col Quantile() function in a formula and Summarize() function if scripting&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2025 16:19:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830179#M101267</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-01T16:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column to return percentile</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830180#M101268</link>
      <description>&lt;P&gt;Frankly I was tunnel-visioned enough that I did not think of using the summary table. I also utilized the formula for col quantile to make all of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you! &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2025 17:20:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830180#M101268</guid>
      <dc:creator>IslandDelverGo</dc:creator>
      <dc:date>2025-02-01T17:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column to return percentile</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830181#M101269</link>
      <description>&lt;P&gt;The Quantile() function will give you what you want if you are looking to calculate your percentiles for an array of data.&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);

A = [1.2, 1.5, 10, 25, 31, 40, 50, 99, 1000, 5000, 25000, 100000];

P50 = Quantile( .5, A );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This can also be used against a column of data in a data table if you reference the data table as a matrix of data&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);

dt = open("$SAMPLE_DATA/Big Class.jmp");

P75 = Quantile( .75, dt[0,4]);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2025 17:35:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-a-column-to-return-percentile/m-p/830181#M101269</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-02-01T17:35:34Z</dc:date>
    </item>
  </channel>
</rss>

