<?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 to remove the unlines of the at risk table of CIF curves in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983730#M379561</link>
    <description>Can you post the dataset you used to PROC SGPLOT ? So we can replicate this issue.</description>
    <pubDate>Thu, 19 Feb 2026 03:52:58 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2026-02-19T03:52:58Z</dc:date>
    <item>
      <title>How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983725#M379556</link>
      <description>&lt;P&gt;Here is the sgplot SAS code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*------------------------------------------------------------
  6) CIF plot + at-risk table BELOW
------------------------------------------------------------*/
proc sgplot data=cif_plot noborder;
  step x=stop y=cuminc / group=Cat lineattrs=(thickness=2);

  xaxistable n_at_risk /
      x=stop
      class=Cat
      location=outside
      title="Number at Risk"
/*      separator=none*/
      valueattrs=(size=9)
      labelattrs=(size=9);

  xaxis label="Time (Days)" values=(0 365 730 1095);
  yaxis label="Cumulative Incidence ";

  keylegend / title=" ";
  title "Cumulative Incidence ";
  format Cat DiseaseGroup.;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the CIF curves&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaMoon_168_0-1771467382864.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113240i35283B9261DF9E05/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaMoon_168_0-1771467382864.png" alt="SeaMoon_168_0-1771467382864.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 02:16:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983725#M379556</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2026-02-19T02:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983726#M379557</link>
      <description>&lt;P&gt;XAXISTABLE does not do that when I run the example from the documentation.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class (where=(age &amp;lt; 13));
scatter x=name y=height;
xaxistable age / class=age title="Student Age" location=inside 
      valueattrs=(color=red) 
      labelattrs=(color=red)
      titleattrs=(color=red);
xaxistable weight height / valueattrs=(color=blue);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Are you using some nonstandard template or style?&lt;/P&gt;
&lt;P&gt;Can you share an actual reproducible example?&amp;nbsp; We don't have your CIF_PLOT dataset.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 02:33:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983726#M379557</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-02-19T02:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983730#M379561</link>
      <description>Can you post the dataset you used to PROC SGPLOT ? So we can replicate this issue.</description>
      <pubDate>Thu, 19 Feb 2026 03:52:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983730#M379561</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-19T03:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983854#M379592</link>
      <description>Thanks but I cannot release the data. I used R to create the curves instead.</description>
      <pubDate>Mon, 23 Feb 2026 03:00:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983854#M379592</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2026-02-23T03:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983855#M379593</link>
      <description>Thanks but I cannot release the data. I used R to fix the issue.</description>
      <pubDate>Mon, 23 Feb 2026 03:00:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983855#M379593</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2026-02-23T03:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the unlines of the at risk table of CIF curves</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983856#M379594</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/382088"&gt;@SeaMoon_168&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thanks but I cannot release the data. I used R to fix the issue.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No need to share the actual data.&amp;nbsp; Just some combination of data and code that can be used to replicate the issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 04:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-unlines-of-the-at-risk-table-of-CIF-curves/m-p/983856#M379594</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-02-23T04:47:56Z</dc:date>
    </item>
  </channel>
</rss>

