<?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: Gray's test in prior version of SAS/STAT in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/678299#M32581</link>
    <description>&lt;P&gt;Thank you for answering.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I checked with the code you sent, the SAS/STAT version was confirmed as 13.2.&lt;/P&gt;&lt;P&gt;SAS/GRAPH is identified as 9.4_M2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Aug 2020 02:10:55 GMT</pubDate>
    <dc:creator>drhwint</dc:creator>
    <dc:date>2020-08-21T02:10:55Z</dc:date>
    <item>
      <title>Gray's test in prior version of SAS/STAT</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/676968#M32466</link>
      <description>&lt;P&gt;I'm trying to analyze claim data using competing risk model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, SAS Enterprise Guide does not support Gray's test using PROC LIFETEST. Maybe it contains SAS/STAT 13.x.&lt;/P&gt;&lt;P&gt;I knew there was an %CIF macro for Gray's test, it would not be helpful because I should consider the IPTW.&lt;/P&gt;&lt;P&gt;Is there any good way to get P value of Gray's test in this situation?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Aug 2020 14:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/676968#M32466</guid>
      <dc:creator>drhwint</dc:creator>
      <dc:date>2020-08-15T14:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Gray's test in prior version of SAS/STAT</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/676984#M32467</link>
      <description>&lt;P&gt;Moved this to the Stats Procs board.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your version of SAS/STAT is independent of SAS Enterprise Guide -- the version of SAS/STAT depends on the SAS environment you connect to.&amp;nbsp; You can use&amp;nbsp;&lt;STRONG&gt;proc product_status; run;&lt;/STRONG&gt; to see the versions of software in your SAS environment.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Aug 2020 16:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/676984#M32467</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2020-08-15T16:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Gray's test in prior version of SAS/STAT</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/677102#M32488</link>
      <description>&lt;P&gt;Did you try just writing a code block to call the macro you mentioned?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what version of SAS/STAT you are running on the SAS server you are using with EG, but on mine here is the header for the autocall macro CIF.&amp;nbsp; Looks like it has existed since version 9.2 of SAS which was a long time ago.&amp;nbsp; Do you have IML and GRAPH licensed?&lt;/P&gt;
&lt;PRE&gt;/*****************************************************************/
 /*          S A S   A U T O C A L L   L I B R A R Y              */
 /*                                                               */
 /*   NAME : CIF                                                  */
 /*   TITLE: Estimate Cumulative Incidence Function and           */
 /*          Compare Cumulative Incidence Functions across Samples*/
 /* PRODUCT: STAT                                                 */
 /*  SYSTEM: ALL                                                  */
 /*    KEYS: survival data, failure probability, competing risks  */
 /*   PROCS:                                                      */
 /*    DATA:                                                      */
 /* SUPPORT: Guixian Lin                UPDATE:  Mar2012          */
 /*          Ying So                    UPDATE:  Jun2014          */
 /*     REF: Klein  and Moeschberger   (2003)                     */
 /*          Marubini and Valsecchi    (1995)                     */
 /*          Gray                      (1988)                     */
 /*    MISC: The %CIF macro requires Base SAS and SAS/IML.        */
 /*          SAS/GRAPH is also required in SAS 9.2                */
 /*****************************************************************/

/*------------------------------------------------------------------
The %CIF macro computes the crude cumulative incidence function
estimates for homogeneous (no covariates) survival data whose
endpoints are subjected to competing risks (Klein and
Moeschberger, 2003). Standard errors and pointwise confidence
limits are also computed. The estimated cumulative incidence curve
is plotted as a  step function using ODS graphics. You can also
display the pointwise confidence limits in the plot by specifying
the PLOTCL keyword in the OPTIONS= argument. If you do not want any
plots, you can suppress it by specifying the NOPLOT keyword in the
OPTIONS= argument.

If the data contains multiple samples identified by the GROUP= variable,
the %CIF macro computes a cumulative incidence curve for each group, and
the macro also compares cumulative incidence functions between groups
using the method of Gray (1988).

...&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Aug 2020 18:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/677102#M32488</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-08-16T18:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Gray's test in prior version of SAS/STAT</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/678299#M32581</link>
      <description>&lt;P&gt;Thank you for answering.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I checked with the code you sent, the SAS/STAT version was confirmed as 13.2.&lt;/P&gt;&lt;P&gt;SAS/GRAPH is identified as 9.4_M2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 02:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/678299#M32581</guid>
      <dc:creator>drhwint</dc:creator>
      <dc:date>2020-08-21T02:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Gray's test in prior version of SAS/STAT</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/678300#M32582</link>
      <description>&lt;P&gt;SAS/IML is version 13.2.&amp;nbsp;I think, it is difficult to use the macro you sent because I know that weights cannot be applied in this macro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 02:12:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Gray-s-test-in-prior-version-of-SAS-STAT/m-p/678300#M32582</guid>
      <dc:creator>drhwint</dc:creator>
      <dc:date>2020-08-21T02:12:40Z</dc:date>
    </item>
  </channel>
</rss>

