<?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 PHREG with plot-Running forever and NOT showing any graphs in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630790#M186786</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running SAS 9.4 SAS/STAT 15.1 environment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get similar results as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings17/SAS0462-2017.pdf" target="_self"&gt;https://support.sas.com/resources/papers/proceedings17/SAS0462-2017.pdf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in my dataset (~250,000 patient data, ~160 MB, about 250,000 rows and 40 columns) for&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) ROC plot for selected time points&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) time-depednent integrated AUC plot with 95% confidence limits&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with the following syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*NOTE: a~kk are explanatory variables (n=37) for the binary outcome (0=no event, 1=event)*/
&lt;BR /&gt;ods graphics on;&lt;BR /&gt;
/*(1)*/
proc phreg data=a.data(overlay=individual)=roc rocoptions(at=1 2 3);
model time*outcome(0)=a b c d e f g h i j k l n m o p q r s t u v w x y z
aa bb cc dd ee ff gg hh ii jj kk;
run;

/*(2)*/
proc phreg data=a.data plots=auc rocoptions(method=ipcw(cl seed=1234) iauc);
model time*outcome(0)=a b c d e f g h i j k l n m o p q r s t u v w x y z
aa bb cc dd ee ff gg hh ii jj kk;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I also increased the MEMSIZE in the config file to 12G.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it is running forever and not showing any graphs and only the following message shows up in the Log Window.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I fix this problem and get the graphs I need? It works with fewer variables in the model (e.g only with the four variables: a, b, c, d)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I have too many variables (e.g 37 variables) in the model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or suggestions would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Mar 2020 02:11:45 GMT</pubDate>
    <dc:creator>sasworker16</dc:creator>
    <dc:date>2020-03-10T02:11:45Z</dc:date>
    <item>
      <title>PROC PHREG with plot-Running forever and NOT showing any graphs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630790#M186786</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running SAS 9.4 SAS/STAT 15.1 environment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get similar results as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings17/SAS0462-2017.pdf" target="_self"&gt;https://support.sas.com/resources/papers/proceedings17/SAS0462-2017.pdf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in my dataset (~250,000 patient data, ~160 MB, about 250,000 rows and 40 columns) for&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) ROC plot for selected time points&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) time-depednent integrated AUC plot with 95% confidence limits&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with the following syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*NOTE: a~kk are explanatory variables (n=37) for the binary outcome (0=no event, 1=event)*/
&lt;BR /&gt;ods graphics on;&lt;BR /&gt;
/*(1)*/
proc phreg data=a.data(overlay=individual)=roc rocoptions(at=1 2 3);
model time*outcome(0)=a b c d e f g h i j k l n m o p q r s t u v w x y z
aa bb cc dd ee ff gg hh ii jj kk;
run;

/*(2)*/
proc phreg data=a.data plots=auc rocoptions(method=ipcw(cl seed=1234) iauc);
model time*outcome(0)=a b c d e f g h i j k l n m o p q r s t u v w x y z
aa bb cc dd ee ff gg hh ii jj kk;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I also increased the MEMSIZE in the config file to 12G.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it is running forever and not showing any graphs and only the following message shows up in the Log Window.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I fix this problem and get the graphs I need? It works with fewer variables in the model (e.g only with the four variables: a, b, c, d)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I have too many variables (e.g 37 variables) in the model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or suggestions would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 02:11:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630790#M186786</guid>
      <dc:creator>sasworker16</dc:creator>
      <dc:date>2020-03-10T02:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PHREG with plot-Running forever and NOT showing any graphs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630862#M186816</link>
      <description>&lt;P&gt;How long is "forever"??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may be possible that plotting with this many variables and this many observations and asking for many different plots overloads the capabilities of your computer.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 11:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630862#M186816</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-03-10T11:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PHREG with plot-Running forever and NOT showing any graphs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630967#M186872</link>
      <description>What happens if you run it with all variables, but a smaller sample, say 50,000 rows? And or, keep adding variables and find out which breaks it. I'm assuming some of those are dummy variables since I see no CLASS statement?</description>
      <pubDate>Tue, 10 Mar 2020 15:39:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PHREG-with-plot-Running-forever-and-NOT-showing-any-graphs/m-p/630967#M186872</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-10T15:39:18Z</dc:date>
    </item>
  </channel>
</rss>

