<?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 poisson distribution in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814612#M321539</link>
    <description>&lt;P&gt;Good evening&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Considering that i have Poisson distribution. How can i calculate the Maximum Likelihood Estimators (MLE) for each of samples?&lt;BR /&gt;(there will be a total of 10,000 Maximum Likelihood Estimators since i have a 10,000 samples of size 25( n=25))&lt;/P&gt;&lt;P&gt;Thank in advanced &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 22 May 2022 15:27:40 GMT</pubDate>
    <dc:creator>Abdulaziz98</dc:creator>
    <dc:date>2022-05-22T15:27:40Z</dc:date>
    <item>
      <title>poisson distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814612#M321539</link>
      <description>&lt;P&gt;Good evening&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Considering that i have Poisson distribution. How can i calculate the Maximum Likelihood Estimators (MLE) for each of samples?&lt;BR /&gt;(there will be a total of 10,000 Maximum Likelihood Estimators since i have a 10,000 samples of size 25( n=25))&lt;/P&gt;&lt;P&gt;Thank in advanced &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 May 2022 15:27:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814612#M321539</guid>
      <dc:creator>Abdulaziz98</dc:creator>
      <dc:date>2022-05-22T15:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: poisson distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814616#M321541</link>
      <description>&lt;P&gt;Good evening,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/425879"&gt;@Abdulaziz98&lt;/a&gt;,&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a SAS dataset ("HAVE") consisting of all 10,000 samples (i.e., 250,000 observations), sorted* by sample number, say, &lt;FONT face="courier new,courier"&gt;SAMPNO=1, ..., 10000&lt;/FONT&gt;. (You may already have some existing sample ID that you can use instead of SAMPNO.) Then use PROC SUMMARY to compute the sample means of the variable (let me call it &lt;FONT face="courier new,courier"&gt;X&lt;/FONT&gt;) containing the values from a Poisson distribution:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=have;
by sampno;
var x;
output out=want(drop=_:) mean=MLE;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The resulting dataset WANT will contain the maximum likelihood estimate (MLE) of the Poisson parameter for each sample, i.e., 10,000 observations with SAMPNO and MLE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* Edit: If your dataset is not sorted, but &lt;EM&gt;grouped&lt;/EM&gt; by sample number (i.e., the first 25 observations are from one sample, the next 25 constitute another sample and so on, but the sample numbers are not in ascending or descending order), add the keyword NOTSORTED to the BY statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;by sampno notsorted;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 May 2022 16:48:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814616#M321541</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2022-05-22T16:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: poisson distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814617#M321542</link>
      <description>&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&amp;gt;&amp;lt;meta name="Generator" content="Microsoft Word 15 (filtered medium)" /&amp;gt;&amp;amp;lt;!--&amp;amp;lt;br&amp;amp;gt;/* Font Definitions */&amp;amp;lt;br&amp;amp;gt;@font-face&amp;amp;lt;br&amp;amp;gt; {font-family:"Cambria Math";&amp;amp;lt;br&amp;amp;gt; panose-1:2 4 5 3 5 4 6 3 2 4;}&amp;amp;lt;br&amp;amp;gt;@font-face&amp;amp;lt;br&amp;amp;gt; {font-family:Calibri;&amp;amp;lt;br&amp;amp;gt; panose-1:2 15 5 2 2 2 4 3 2 4;}&amp;amp;lt;br&amp;amp;gt;/* Style Definitions */&amp;amp;lt;br&amp;amp;gt;p.MsoNormal, li.MsoNormal, div.MsoNormal&amp;amp;lt;br&amp;amp;gt; {margin:0in;&amp;amp;lt;br&amp;amp;gt; font-size:11.0pt;&amp;amp;lt;br&amp;amp;gt; font-family:"Calibri",sans-serif;}&amp;amp;lt;br&amp;amp;gt;a:link, span.MsoHyperlink&amp;amp;lt;br&amp;amp;gt; {mso-style-priority:99;&amp;amp;lt;br&amp;amp;gt; color:blue;&amp;amp;lt;br&amp;amp;gt; text-decoration:underline;}&amp;amp;lt;br&amp;amp;gt;.MsoChpDefault&amp;amp;lt;br&amp;amp;gt; {mso-style-type:export-only;}&amp;amp;lt;br&amp;amp;gt;@page WordSection1&amp;amp;lt;br&amp;amp;gt; {size:8.5in 11.0in;&amp;amp;lt;br&amp;amp;gt; margin:1.0in 1.25in 1.0in 1.25in;}&amp;amp;lt;br&amp;amp;gt;div.WordSection1&amp;amp;lt;br&amp;amp;gt; {page:WordSection1;}&amp;amp;lt;br&amp;amp;gt;&amp;amp;lt;br&amp;amp;gt;</description>
      <pubDate>Sun, 22 May 2022 17:06:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/poisson-distribution/m-p/814617#M321542</guid>
      <dc:creator>Abdulaziz98</dc:creator>
      <dc:date>2022-05-22T17:06:09Z</dc:date>
    </item>
  </channel>
</rss>

