<?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 回复： Can JMP achieve a ready quantile at 105 weight? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718165#M90030</link>
    <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
d2 = dt &amp;lt;&amp;lt; Summary(
	Quantiles( 25, 5 ),
	Quantiles( 50, 5 ),
	Quantiles( 75, 5 ),
	Freq( 0 ),
	Weight( 0 ),
	Link to original data table( 0 )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 23 Jan 2024 09:12:43 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2024-01-23T09:12:43Z</dc:date>
    <item>
      <title>Can JMP achieve a ready quantile at 115 weight?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718164#M90029</link>
      <description>&lt;P&gt;Can JMP achieve a ready quantile at 115 weight?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-01-23_17-00-48.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60481i40123AF40E8B048D/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-01-23_17-00-48.png" alt="2024-01-23_17-00-48.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 09:13:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718164#M90029</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-01-23T09:13:47Z</dc:date>
    </item>
    <item>
      <title>回复： Can JMP achieve a ready quantile at 105 weight?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718165#M90030</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
d2 = dt &amp;lt;&amp;lt; Summary(
	Quantiles( 25, 5 ),
	Quantiles( 50, 5 ),
	Quantiles( 75, 5 ),
	Freq( 0 ),
	Weight( 0 ),
	Link to original data table( 0 )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jan 2024 09:12:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718165#M90030</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-01-23T09:12:43Z</dc:date>
    </item>
    <item>
      <title>回复： Can JMP achieve a ready quantile at 105 weight?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718209#M90043</link>
      <description>&lt;P&gt;You could do trial-and-error, but that would be tedious. The only other way that I can see to do this is to fit a distribution to the data, and then use the Quantile Profiler with a desirability function to find the quantile level. For the situation you proposed, I fit a smooth curve to the data and the results looked like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class - Distribution of weight.png" style="width: 464px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60504i4134D9BE5D03DCB9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class - Distribution of weight.png" alt="Big Class - Distribution of weight.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Of course different distributions will give slightly different results, but it is the only way that I can see to determine the proper quantile level.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you had results in a script, here is the script to match my results:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution(
	Continuous Distribution(
		Column( :weight ),
		Fit Smooth Curve(
			Quantile Profiler(
				1,
				Confidence Intervals( 1 ),
				Desirability Functions( 1 ),
				Smooth Curve Quantile &amp;lt;&amp;lt;
				Response Limits(
					{Lower( 38.2411401370744, 0.0183 ), Middle( 115, 1 ),
					Upper( 200, 0.0183 ), Goal( "Match Target" ), Importance( 1 )}
				),
				Term Value(
					Probability(
						0.685484294268159,
						N Levels( 200 ),
						Lock( 0 ),
						Show( 1 )
					)
				)
			)
		)
	),
	SendToReport(
		Dispatch( {"weight"}, "Quantiles", OutlineBox, {Close( 1 )} ),
		Dispatch( {"weight"}, "Summary Statistics", OutlineBox, {Close( 1 )} )
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jan 2024 18:17:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-JMP-achieve-a-ready-quantile-at-115-weight/m-p/718209#M90043</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2024-01-23T18:17:16Z</dc:date>
    </item>
  </channel>
</rss>

