<?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 How to save custom quantiles to a table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229034#M45421</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a continuous variable which I broke down using a custom quantile (instead of normal quantile, default in JMP). My custom quantile is 0%, 25%, 50%, 75% and 100%. The distribution platform shows the output but how can I save this to a table? If I click the red triangle --&amp;gt; save, I only see the option to save default JMP normal quantiles only.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas about how I can save the custom quantiles rather than the default JMP normal quantiles?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 11 Oct 2019 14:13:16 GMT</pubDate>
    <dc:creator>75Innovation</dc:creator>
    <dc:date>2019-10-11T14:13:16Z</dc:date>
    <item>
      <title>How to save custom quantiles to a table</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229034#M45421</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a continuous variable which I broke down using a custom quantile (instead of normal quantile, default in JMP). My custom quantile is 0%, 25%, 50%, 75% and 100%. The distribution platform shows the output but how can I save this to a table? If I click the red triangle --&amp;gt; save, I only see the option to save default JMP normal quantiles only.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas about how I can save the custom quantiles rather than the default JMP normal quantiles?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2019 14:13:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229034#M45421</guid>
      <dc:creator>75Innovation</dc:creator>
      <dc:date>2019-10-11T14:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to save custom quantiles to a table</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229058#M45423</link>
      <description>&lt;P&gt;Right-click on the table with the quantiles and select Make Into Data Table.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2019 15:03:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229058#M45423</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-10-11T15:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to save custom quantiles to a table</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229075#M45429</link>
      <description>&lt;P&gt;Mark,&amp;nbsp;Appreciate the reply. I was looking for a solution to add quartiles to the main data table. This was I can work on the base dataset along with quartiles. I can definitely use your solution and then create a formula column.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2019 16:58:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/229075#M45429</guid>
      <dc:creator>75Innovation</dc:creator>
      <dc:date>2019-10-11T16:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to save custom quantiles to a table</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/629141#M82732</link>
      <description>&lt;P&gt;How do you write this action into a script?&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 15:40:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/629141#M82732</guid>
      <dc:creator>nanayOf3</dc:creator>
      <dc:date>2023-05-05T15:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to save custom quantiles to a table</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/629166#M82736</link>
      <description>&lt;P&gt;Let JMP script it for you (if you have JMP16+ even easier)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Open your table&lt;/P&gt;
&lt;P&gt;2. Create your distribution&lt;/P&gt;
&lt;P&gt;3. Right click on the Quantiles table box and Make into Data table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Slightly Script from Enhanced log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);&lt;BR /&gt;// Open Data Table: Big Class.jmp
// → Data Table("Big Class")
Open("$SAMPLE_DATA/Big Class.jmp");

// Launch platform: Distribution
Data Table("Big Class") &amp;lt;&amp;lt; Distribution(Continuous Distribution(Column(:weight)));

// Make TableBox into a Data Table
// → Data Table("Untitled")
Local({obj},
	obj = Data Table("Big Class") &amp;lt;&amp;lt; Distribution(
		Continuous Distribution(Column(:weight))
	);
	Report(obj)["weight", "Quantiles", Table Box(1)] &amp;lt;&amp;lt; Make Into Data Table;
	obj &amp;lt;&amp;lt; Close Window;
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The script can be "auto"built without enhanced log but you have to collected the scripts from different places (from distribution platform and from result tables table script)&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 17:09:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-custom-quantiles-to-a-table/m-p/629166#M82736</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-05T17:09:38Z</dc:date>
    </item>
  </channel>
</rss>

