<?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: How can access predicted data from Proc GEE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461822#M70367</link>
    <description>Dear Rick!&lt;BR /&gt;Thank you much!!</description>
    <pubDate>Sun, 13 May 2018 06:46:11 GMT</pubDate>
    <dc:creator>Lijuu</dc:creator>
    <dc:date>2018-05-13T06:46:11Z</dc:date>
    <item>
      <title>How can access predicted data from Proc GEE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461367#M70356</link>
      <description>&lt;P&gt;Dear All:&lt;/P&gt;&lt;P&gt;I want to plot observed vs predicted data, that estimated using PROC GEE , to check whether my model is&lt;/P&gt;&lt;P&gt;good fit of the data or not.&lt;/P&gt;&lt;P&gt;How can i access these predicted data from the estimated model using proc GEE? the code am using is given below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc gee data=halu;&lt;/P&gt;&lt;P&gt;class blu;&lt;/P&gt;&lt;P&gt;model y/n=blu filk mak/dist=bin;&lt;/P&gt;&lt;P&gt;repeated subject=id/type=cs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks alot.&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 17:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461367#M70356</guid>
      <dc:creator>Lijuu</dc:creator>
      <dc:date>2018-05-10T17:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can access predicted data from Proc GEE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461638#M70358</link>
      <description>&lt;P&gt;use the OUTPUT statement&amp;nbsp;to store the predicted&amp;nbsp;probabilities in a data set.&amp;nbsp; Since you are fitting a binomial model with event/Trials syntax, I assume you want to use the observed proportions as the "observed data"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc gee data=halu;
   class blu;
   model y/n=blu filk mak/dist=bin;
   repeated subject=id/type=cs;
   output out=GEEOut predicted=Pred;
run;

data Score;
set GEEOut;
ObsProb = y / n;   /* form observed proportions */
run;

proc sgplot data=Score;
scatter x=Pred y=ObsProb;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 May 2018 17:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461638#M70358</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-05-11T17:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can access predicted data from Proc GEE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461822#M70367</link>
      <description>Dear Rick!&lt;BR /&gt;Thank you much!!</description>
      <pubDate>Sun, 13 May 2018 06:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-access-predicted-data-from-Proc-GEE/m-p/461822#M70367</guid>
      <dc:creator>Lijuu</dc:creator>
      <dc:date>2018-05-13T06:46:11Z</dc:date>
    </item>
  </channel>
</rss>

