<?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: dear all, how to use SAS to compute empirical CDF? in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6159#M588</link>
    <description>sorry that i may have confused you. my question is, given a list of numbers as below, how to compute CDFs based on last 100 numbers.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
0.3&lt;BR /&gt;
1.2&lt;BR /&gt;
2.5&lt;BR /&gt;
0.1&lt;BR /&gt;
0.1&lt;BR /&gt;
0.1&lt;BR /&gt;
0.2&lt;BR /&gt;
0.33&lt;BR /&gt;
0.21&lt;BR /&gt;
.2&lt;BR /&gt;
0.1&lt;BR /&gt;
.3&lt;BR /&gt;
.5&lt;BR /&gt;
.6&lt;BR /&gt;
.2&lt;BR /&gt;
............................(a long long list)&lt;BR /&gt;
etc.

Message was edited by: zinita</description>
    <pubDate>Fri, 04 Jan 2008 21:23:27 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-01-04T21:23:27Z</dc:date>
    <item>
      <title>dear all, how to use SAS to compute empirical CDF?</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6155#M584</link>
      <description>I have monthly data (huge dataset), and want to compute empirical CDF for each year each company.&lt;BR /&gt;
&lt;BR /&gt;
what's the best way to do it?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
thank you so much!!!</description>
      <pubDate>Fri, 04 Jan 2008 18:31:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6155#M584</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-04T18:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: dear all, how to use SAS to compute empirical CDF?</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6156#M585</link>
      <description>Hi:&lt;BR /&gt;
  Perhaps this documentation will be of use to you.&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/app/da/new/802ce/ets/chap4/sect8.htm" target="_blank"&gt;http://support.sas.com/rnd/app/da/new/802ce/ets/chap4/sect8.htm&lt;/A&gt;&lt;BR /&gt;
in which it discusses the CDF=EMPIRICAL option.&lt;BR /&gt;
&lt;BR /&gt;
  For help using the SAS/STAT procedures, you might consider contacting Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 04 Jan 2008 18:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6156#M585</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-01-04T18:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: dear all, how to use SAS to compute empirical CDF?</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6157#M586</link>
      <description>thank you so much, though it is not what i am looking for. i dont think a simple build-in function can solve it. it should be a formula....i guess.....</description>
      <pubDate>Fri, 04 Jan 2008 19:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6157#M586</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-04T19:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: dear all, how to use SAS to compute empirical CDF?</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6158#M587</link>
      <description>Hmmm,&lt;BR /&gt;
 I didn't think that CDF=EMPIRICAL() in the documentation example was a function. In this syntax example (clipped from the doc), it looks, to me, like a statement option on the ERRORMODEL statement.&lt;BR /&gt;
[pre]&lt;BR /&gt;
  &lt;BR /&gt;
proc model data=t time=t itprint;&lt;BR /&gt;
dependent y;&lt;BR /&gt;
parm a 5 ;&lt;BR /&gt;
y = a;&lt;BR /&gt;
obj = resid.y * resid.y;&lt;BR /&gt;
errormodel y ~ general( obj ) &lt;BR /&gt;
    cdf=(empirical=( tails=( t(15) percent= 5)));&lt;BR /&gt;
&lt;BR /&gt;
fit y / outns=s out=r;&lt;BR /&gt;
id  date;&lt;BR /&gt;
solve y / data=t(where=(date='1jun95'd ))&lt;BR /&gt;
  residdata=r sdata=s random=200 seed=6789 out=monte;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
Of course, I am not a STAT person and that was just the FIRST hit I came up with when searching the doc for the string "empirical CDF". &lt;BR /&gt;
&lt;BR /&gt;
For more help with your question, you might consider contacting Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 04 Jan 2008 19:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6158#M587</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-01-04T19:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: dear all, how to use SAS to compute empirical CDF?</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6159#M588</link>
      <description>sorry that i may have confused you. my question is, given a list of numbers as below, how to compute CDFs based on last 100 numbers.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
0.3&lt;BR /&gt;
1.2&lt;BR /&gt;
2.5&lt;BR /&gt;
0.1&lt;BR /&gt;
0.1&lt;BR /&gt;
0.1&lt;BR /&gt;
0.2&lt;BR /&gt;
0.33&lt;BR /&gt;
0.21&lt;BR /&gt;
.2&lt;BR /&gt;
0.1&lt;BR /&gt;
.3&lt;BR /&gt;
.5&lt;BR /&gt;
.6&lt;BR /&gt;
.2&lt;BR /&gt;
............................(a long long list)&lt;BR /&gt;
etc.

Message was edited by: zinita</description>
      <pubDate>Fri, 04 Jan 2008 21:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/dear-all-how-to-use-SAS-to-compute-empirical-CDF/m-p/6159#M588</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-04T21:23:27Z</dc:date>
    </item>
  </channel>
</rss>

