<?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 Proc glm pairwise deletion in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366007#M19201</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to run a&amp;nbsp;regression model using proc glm. I have missing valuse on both dependent and independent variables. The defult in SAS is listwise deletion but I want to do pairwise deletion. Howver, I couldnt find a statement to do pairwise deletion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone help me in that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Owis&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2017 20:36:10 GMT</pubDate>
    <dc:creator>owiseilayyan</dc:creator>
    <dc:date>2017-06-11T20:36:10Z</dc:date>
    <item>
      <title>Proc glm pairwise deletion</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366007#M19201</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to run a&amp;nbsp;regression model using proc glm. I have missing valuse on both dependent and independent variables. The defult in SAS is listwise deletion but I want to do pairwise deletion. Howver, I couldnt find a statement to do pairwise deletion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone help me in that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Owis&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2017 20:36:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366007#M19201</guid>
      <dc:creator>owiseilayyan</dc:creator>
      <dc:date>2017-06-11T20:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc glm pairwise deletion</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366026#M19202</link>
      <description>&lt;P&gt;GLM does not delete any observations for which the Dependent Variables (DBV) is missing. It deletes any observation for which one or more Indep Variables (IVs) are missing. Thus "pairwise deletion" doesn't make sense in the general setting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What models are you trying to fit? A single model that has one IV? A series of models? &amp;nbsp;Give us sample PROC GLM statements.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 00:56:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366026#M19202</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-06-12T00:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc glm pairwise deletion</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366049#M19203</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my proc glm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;proc glm data= CRCT_DATAI;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;class gender (ref = 'Woman') cGPA (ref = '3.3-3.7') Lev_educ (ref = "Bachelor's degree") Geo_setting (ref = 'Urban') Focuscare (ref = "General musculoskeletal care (spine and extremities)") style (ref = 'Pragmat');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;model KABQ_Knowledge = age gender cGPA Lev_educ Geo_setting Focuscare style/ solution ss3 ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The output says:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Number of observation read: 127&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Number of Observation used: 49&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;However, when I used simple regression, almost all data was used!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Owis&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 04:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366049#M19203</guid>
      <dc:creator>owiseilayyan</dc:creator>
      <dc:date>2017-06-12T04:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Proc glm pairwise deletion</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366065#M19204</link>
      <description>&lt;P&gt;What's a simple regression?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why do you have so many missing, it's almost 2/3 of your data?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 05:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-glm-pairwise-deletion/m-p/366065#M19204</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-12T05:49:03Z</dc:date>
    </item>
  </channel>
</rss>

