<?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 GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552305#M27519</link>
    <description>&lt;P&gt;Can either Proc GAM, Proc Adaptivereg, or both handle a multinomial dependent variable (e.g.,&amp;nbsp;likely status of a credit card account next month as&amp;nbsp;current, delinquent, or paid off)?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2019 19:39:27 GMT</pubDate>
    <dc:creator>davis</dc:creator>
    <dc:date>2019-04-18T19:39:27Z</dc:date>
    <item>
      <title>PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552305#M27519</link>
      <description>&lt;P&gt;Can either Proc GAM, Proc Adaptivereg, or both handle a multinomial dependent variable (e.g.,&amp;nbsp;likely status of a credit card account next month as&amp;nbsp;current, delinquent, or paid off)?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 19:39:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552305#M27519</guid>
      <dc:creator>davis</dc:creator>
      <dc:date>2019-04-18T19:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552480#M27525</link>
      <description>&lt;P&gt;For categorical responses, &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_adaptivereg_syntax05.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.adaptivereg.adptdist" target="_self"&gt;PROC ADAPTIVEREG supports&lt;/A&gt; binomial, negative binomial, and Poisson responses.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_hpgam_syntax06.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.hpgam.model_dist" target="_self"&gt;PROC GAMPL supports&lt;/A&gt; the same distribution and a binary distribution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sounds like you want a nonparametric (or semi-parametric) fit. One possible alternative is to &lt;A href="https://blogs.sas.com/content/iml/2019/02/18/regression-restricted-cubic-splines-sas.html" target="_self"&gt;use the EFFECT statement in GLMSELECT to generate spline effects&lt;/A&gt; for the explanatory variables and &lt;A href="https://blogs.sas.com/content/iml/2018/07/30/names-columns-design-matrix.html" target="_self"&gt;output the design matrix.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can then use PROC FMM or HPGENSELECT to model the response in terms of the columns of the design matrix.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 16:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552480#M27525</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-04-19T16:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552483#M27526</link>
      <description>&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are correct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am searching for either a nonparametric or semi-parametric fit, where the dependent variable can be&amp;nbsp;specified as a multinomial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try your suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 16:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552483#M27526</guid>
      <dc:creator>davis</dc:creator>
      <dc:date>2019-04-19T16:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552827#M27535</link>
      <description>&lt;P&gt;It might be easier to just use PROC LOGISTIC which can fit a multinomial response model and also supports the EFFECT statement. For example, these statements fit a model to a nominal multinomial response and use splines to represent the predictor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic;
effect edspline=spline(ed / naturalcubic basis=tpf(noint));
model occ(ref="1")=edspline / link=glogit;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Apr 2019 13:27:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552827#M27535</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-04-22T13:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552831#M27537</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand PROC LOGISTIC is an alternate path, at least theoretically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I am trying to assess the feasibility of whether either PROC&amp;nbsp;GAM, PROC&amp;nbsp;ADAPTIVEREG or both can handle a multinomial nominal dependent variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 13:47:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552831#M27537</guid>
      <dc:creator>davis</dc:creator>
      <dc:date>2019-04-22T13:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552833#M27538</link>
      <description>&lt;P&gt;I already answered your question. Neither procedure supports a multinomial response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think StatDave_sas's suggestion is the best you can do with one call to a SAS/STAT procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, don't use PROC GAM any more. Switch to GAMPL, which is faster and scales to larger data sets.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 13:55:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552833#M27538</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-04-22T13:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552843#M27539</link>
      <description>&lt;P&gt;The main procedures that do support the multinomial distribution are the LOGISTIC, HPLOGISTIC, GLIMMIX, HPGENSELECT, and GEE (for repeated measures data only) procedures, as well as the older and seldom used PROC CATMOD . For ordinal multinomial responses only, PROC GENMOD is also available. The highly versatile but more difficult to use PROC NLMIXED could also be used. It is summarized in &lt;A href="http://support.sas.com/kb/22871" target="_self"&gt;this note&lt;/A&gt;. Of these procedures, flexible models similar to what GAM and the newer GAMPL do can be fit in LOGISTIC and GLIMMIX since these procedures support the EFFECT statement which allow you to use splines similar to GAM and GAMPL. So, as Rick says, they are your best bet for what you seem to want to do.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 14:09:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552843#M27539</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-04-22T14:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM, PROC ADAPTIVEREG, MULTINOMIAL DEPENDENT VARIABLE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552960#M27540</link>
      <description>Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Apr 2019 17:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GAM-PROC-ADAPTIVEREG-MULTINOMIAL-DEPENDENT-VARIABLE/m-p/552960#M27540</guid>
      <dc:creator>davis</dc:creator>
      <dc:date>2019-04-22T17:52:18Z</dc:date>
    </item>
  </channel>
</rss>

