<?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 plm effectplot contour: how to generate plot for one value of the outcome only? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530532#M17715</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=HEERDT.VPICU_label;
 model VP_ICU1_VasoNE_012(ref='0')= Ind_DBP1|Age/ nooddsratio link=glogit;
  store logimodel;
  run; 

proc plm source=logiModel ;
   effectplot contour(x= Ind_DBP1 y=Age plotby=VP_ICU1_VasoNE_012 );
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm generating the following image, but just want to get a publication quality image for the value of&amp;nbsp;&lt;CODE class=" language-sas"&gt;VP_ICU1_VasoNE_012 =2.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;Since this is the outcome, I cant find an option using plotby = to just generate this image.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;Sounds like a question for Rick:-)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jan 2019 02:14:02 GMT</pubDate>
    <dc:creator>ChristosK</dc:creator>
    <dc:date>2019-01-28T02:14:02Z</dc:date>
    <item>
      <title>proc plm effectplot contour: how to generate plot for one value of the outcome only?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530532#M17715</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=HEERDT.VPICU_label;
 model VP_ICU1_VasoNE_012(ref='0')= Ind_DBP1|Age/ nooddsratio link=glogit;
  store logimodel;
  run; 

proc plm source=logiModel ;
   effectplot contour(x= Ind_DBP1 y=Age plotby=VP_ICU1_VasoNE_012 );
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm generating the following image, but just want to get a publication quality image for the value of&amp;nbsp;&lt;CODE class=" language-sas"&gt;VP_ICU1_VasoNE_012 =2.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;Since this is the outcome, I cant find an option using plotby = to just generate this image.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;Sounds like a question for Rick:-)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 02:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530532#M17715</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2019-01-28T02:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc plm effectplot contour: how to generate plot for one value of the outcome only?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530674#M17716</link>
      <description>&lt;P&gt;I can't open the pdf for some reason. However, I think the values in the EFFECTPLOT statement are restricted to the explanatory variables. It sounds like you want to plot the probability for a particular level of a multinomial response variable. If so, use the UNPACK option to put each response level in its own graph.&amp;nbsp; You might also want to use the&amp;nbsp;ILINK option to get the contours on the probability scale. Here's an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=sashelp.cars;
  model origin(ref="Asia")= mpg_city|weight / nooddsratio link=glogit;
  store logimodel;
run; 

proc plm source=logiModel ;
   effectplot contour(x=mpg_city y=Weight) / ilink unpack;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 16:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530674#M17716</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-01-28T16:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: proc plm effectplot contour: how to generate plot for one value of the outcome only?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530822#M17725</link>
      <description>&lt;P&gt;Thanks Rick.&lt;/P&gt;&lt;P&gt;Not quite sure I understand what the link function does. I tried it with and without, but the output looked the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the image I came up with:&lt;/P&gt;&lt;P&gt;&lt;IMG border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 23:56:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-plm-effectplot-contour-how-to-generate-plot-for-one-value/m-p/530822#M17725</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2019-01-28T23:56:14Z</dc:date>
    </item>
  </channel>
</rss>

