<?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: CDF function in JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8319#M8313</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a function CDF() that generates a list with two matrices that can be used for finding the approximate percentiles. The distribution platform can also be used (interactively or via JSL).&lt;/P&gt;&lt;P&gt;The results will differ between the three methods below, especially for extreme percentiles and small number of data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #011993;"&gt;&lt;SPAN style="color: #000000;"&gt;Y &lt;/SPAN&gt;=&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;:&lt;SPAN style="color: #000000;"&gt;Weight &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;get values&lt;/STRONG&gt;;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;Quant&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; CumProb&lt;STRONG&gt;}&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;CDF&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; Y &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;&lt;SPAN style="color: #000000;"&gt;P &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;[&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.9&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;// Example of percentile levels&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate values of the P percentiles by "matching"&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P1 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; Quant&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Loc Sorted&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; CumProb&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P &lt;STRONG&gt;)]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate P percentiles by interpolating the CDF&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// For small data sets the results depends much on the choice of smoothing term lambda (here 1)&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P2 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;Spline Eval&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; P&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;Spline Coef&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; CumProb&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Quant&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate percentiles using Distribution platform&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #011993;"&gt;&lt;SPAN style="color: #000000;"&gt;dist &lt;/SPAN&gt;=&lt;SPAN style="color: #000000;"&gt; dt &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;Distribution&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; Continuous Distribution&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; &lt;SPAN style="color: #032ce4;"&gt;Column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;weight &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; Fit Distribution&lt;STRONG&gt;(&lt;/STRONG&gt; Smooth Curve&lt;STRONG&gt;(&lt;/STRONG&gt; Quantiles&lt;STRONG&gt;(&lt;/STRONG&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P3 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Report&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; dist &lt;STRONG&gt;)[&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Number Col Box&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #942193;"&gt;"Quantile"&lt;/SPAN&gt;&lt;STRONG&gt;)]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;get &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #011993; line-height: 1.5em;"&gt;as matrix&lt;/STRONG&gt;&lt;SPAN style="color: #011993; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;Show&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; P1&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P2&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P3 &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Apr 2014 10:32:41 GMT</pubDate>
    <dc:creator>ms</dc:creator>
    <dc:date>2014-04-08T10:32:41Z</dc:date>
    <item>
      <title>CDF function in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8318#M8312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a cdf function in JSL that can return the percentile of a value x with a distribution defined by an array or a column in data table?&lt;/P&gt;&lt;P&gt;I only found functions that return the percentiles for special distribution functions (normal, beta, gamma...), but I need t find out in an array of measured data what is the percentile of one measured value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 05:12:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8318#M8312</guid>
      <dc:creator>jmper</dc:creator>
      <dc:date>2014-04-08T05:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: CDF function in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8319#M8313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a function CDF() that generates a list with two matrices that can be used for finding the approximate percentiles. The distribution platform can also be used (interactively or via JSL).&lt;/P&gt;&lt;P&gt;The results will differ between the three methods below, especially for extreme percentiles and small number of data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #011993;"&gt;&lt;SPAN style="color: #000000;"&gt;Y &lt;/SPAN&gt;=&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;:&lt;SPAN style="color: #000000;"&gt;Weight &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;get values&lt;/STRONG&gt;;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;Quant&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; CumProb&lt;STRONG&gt;}&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;CDF&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; Y &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;&lt;SPAN style="color: #000000;"&gt;P &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;[&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0.9&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;// Example of percentile levels&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate values of the P percentiles by "matching"&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P1 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; Quant&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Loc Sorted&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; CumProb&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P &lt;STRONG&gt;)]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate P percentiles by interpolating the CDF&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// For small data sets the results depends much on the choice of smoothing term lambda (here 1)&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P2 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;Spline Eval&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; P&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;Spline Coef&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; CumProb&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Quant&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #008f00;"&gt;// Find approximate percentiles using Distribution platform&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier; color: #011993;"&gt;&lt;SPAN style="color: #000000;"&gt;dist &lt;/SPAN&gt;=&lt;SPAN style="color: #000000;"&gt; dt &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;Distribution&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; Continuous Distribution&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; &lt;SPAN style="color: #032ce4;"&gt;Column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;weight &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; Fit Distribution&lt;STRONG&gt;(&lt;/STRONG&gt; Smooth Curve&lt;STRONG&gt;(&lt;/STRONG&gt; Quantiles&lt;STRONG&gt;(&lt;/STRONG&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;P3 &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Report&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; dist &lt;STRONG&gt;)[&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Number Col Box&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #942193;"&gt;"Quantile"&lt;/SPAN&gt;&lt;STRONG&gt;)]&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;get &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #011993; line-height: 1.5em;"&gt;as matrix&lt;/STRONG&gt;&lt;SPAN style="color: #011993; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 15px; font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;Show&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; P1&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P2&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; P3 &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 10:32:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8319#M8313</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2014-04-08T10:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: CDF function in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8320#M8314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My question was how to get CumProb from Quant and your examples are how to get Quant from CumProb, but the sample principle applies. Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 16:30:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/CDF-function-in-JSL/m-p/8320#M8314</guid>
      <dc:creator>jmper</dc:creator>
      <dc:date>2014-04-08T16:30:15Z</dc:date>
    </item>
  </channel>
</rss>

