<?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 How to Modify Effect Plots In Proc Logistic in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595037#M15725</link>
    <description>&lt;P&gt;Hi Guys: can anyone give me advice on how to customize the effects plot produced by SAS in Proc Logistic.&lt;/P&gt;&lt;P&gt;What I am trying to do is to change the&amp;nbsp; X axis range so my predicted probabilities are across a wider range than default. I tried the following but its ignored by SAS with no error in the log, Forgive me if this is a stupid question. twamap55 is a continuous variable of mean arterial pressure scores.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc logistic data=mapmerge ;&lt;BR /&gt;model ICU_DEATH(EVENT='Yes')=twap55 ;&lt;BR /&gt;UNITS twap55= -1 ;&lt;BR /&gt;effectplot / at(twap55=0 to 75 by 5) ;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output stays the same no matter what I try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="map_pred_plot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33028i4A4DC0D278077262/image-size/large?v=v2&amp;amp;px=999" role="button" title="map_pred_plot.png" alt="map_pred_plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Oct 2019 12:55:13 GMT</pubDate>
    <dc:creator>Ameribrit</dc:creator>
    <dc:date>2019-10-09T12:55:13Z</dc:date>
    <item>
      <title>How to Modify Effect Plots In Proc Logistic</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595037#M15725</link>
      <description>&lt;P&gt;Hi Guys: can anyone give me advice on how to customize the effects plot produced by SAS in Proc Logistic.&lt;/P&gt;&lt;P&gt;What I am trying to do is to change the&amp;nbsp; X axis range so my predicted probabilities are across a wider range than default. I tried the following but its ignored by SAS with no error in the log, Forgive me if this is a stupid question. twamap55 is a continuous variable of mean arterial pressure scores.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc logistic data=mapmerge ;&lt;BR /&gt;model ICU_DEATH(EVENT='Yes')=twap55 ;&lt;BR /&gt;UNITS twap55= -1 ;&lt;BR /&gt;effectplot / at(twap55=0 to 75 by 5) ;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output stays the same no matter what I try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="map_pred_plot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33028i4A4DC0D278077262/image-size/large?v=v2&amp;amp;px=999" role="button" title="map_pred_plot.png" alt="map_pred_plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 12:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595037#M15725</guid>
      <dc:creator>Ameribrit</dc:creator>
      <dc:date>2019-10-09T12:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to Modify Effect Plots In Proc Logistic</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595040#M15726</link>
      <description>&lt;P&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods trace on;&lt;/P&gt;
&lt;P&gt;proc logistic&lt;/P&gt;
&lt;P&gt;........&lt;/P&gt;
&lt;P&gt;ods trace off;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and get the output name of that Graph ,and save the data of Graph into a dataset ,Like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output xxxx=have;&lt;/P&gt;
&lt;P&gt;proc logistic...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After that using proc sgplot to customize your real Graph .&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 13:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595040#M15726</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-10-09T13:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to Modify Effect Plots In Proc Logistic</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595043#M15727</link>
      <description>&lt;P&gt;thanks for the advice but I'm not sure how to do as you suggest. I ran the proc with ods trace on and I get a bunch of stuff in the log one of which is&amp;nbsp; something resembling effects plot but not sure what to do with it or how to grab it.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Francis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: FitStatistics&lt;BR /&gt;Label: Fit Statistics&lt;BR /&gt;Template: Stat.Logistic.FitStatistics&lt;BR /&gt;Path: Logistic.FitStatistics&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: GlobalTests&lt;BR /&gt;Label: Global Tests&lt;BR /&gt;Template: Stat.Logistic.GlobalTests&lt;BR /&gt;Path: Logistic.GlobalTests&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: ParameterEstimates&lt;BR /&gt;Label: Parameter Estimates&lt;BR /&gt;Template: Stat.Logistic.ParameterEstimates&lt;BR /&gt;Path: Logistic.ParameterEstimates&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: Association&lt;BR /&gt;Label: Association Statistics&lt;BR /&gt;Template: Stat.Logistic.Association&lt;BR /&gt;Path: Logistic.Association&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: CLoddsWald&lt;BR /&gt;Label: 95% Clodds=Wald&lt;BR /&gt;Template: Stat.Logistic.CloddsWald&lt;BR /&gt;Path: Logistic.CLoddsWald&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: ORPlot&lt;BR /&gt;Label: 95% Clodds=Wald Plots&lt;BR /&gt;Template: Stat.Logistic.Graphics.ORPlot&lt;BR /&gt;Path: Logistic.ORPlot&lt;BR /&gt;-------------&lt;/P&gt;&lt;P&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: FitPlot&lt;BR /&gt;Label: Fit Plot 1&lt;BR /&gt;Template: Stat.Logistic.Graphics.FitPlot&lt;BR /&gt;Path: Logistic.EffectPlots.EffectPlots.FitPlot&lt;BR /&gt;-------------&lt;BR /&gt;NOTE: The LOGISTIC procedure generated the model item store WORK.LOGIMODEL.&lt;BR /&gt;NOTE: There were 277 observations read from the data set WORK.MAPMERGE.&lt;BR /&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;BR /&gt;real time 0.54 seconds&lt;BR /&gt;cpu time 0.28 seconds&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 13:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595043#M15727</guid>
      <dc:creator>Ameribrit</dc:creator>
      <dc:date>2019-10-09T13:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to Modify Effect Plots In Proc Logistic</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595324#M15783</link>
      <description>&lt;P&gt;The last one .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output &lt;STRONG&gt;FitPlot&lt;/STRONG&gt;=have;&lt;/P&gt;
&lt;P&gt;proc logistic...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And use have table to plot the graph you need .&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 11:08:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-Modify-Effect-Plots-In-Proc-Logistic/m-p/595324#M15783</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-10-10T11:08:53Z</dc:date>
    </item>
  </channel>
</rss>

