<?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: Displaying variance-covariance matrix with SAS GAMPL in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873377#M43209</link>
    <description>&lt;P&gt;Instead of using GAMPL, consider using a modeling procedure that offers the EFFECT statement (GLIMMIX, LOGISTIC, ORTHOREG, and others) which can add spline effects to your model. You could then use the COVB (or other option depending on the procedure) to display and/or save the parameter covariance matrix. Or use the STORE statement in the procedure (if available) to save the model and then use PROC PLM to test additional hypotheses.&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2023 14:31:36 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2023-05-02T14:31:36Z</dc:date>
    <item>
      <title>Displaying variance-covariance matrix with SAS GAMPL</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873364#M43206</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using PROC GAMPL to perform GAM analyses, in which I am mixing spline() and param() effects. I am looking for a way to get the covariance matrix of the parameter estimates for additional calculations, but I could not find how to do that. For GLM analyses performed with PROC GENMOD, the covariance matrix may be retrieved by requesting the covB table with the ods output statement. Is there not an equivalent way to proceed with PROC GAMPL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 13:23:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873364#M43206</guid>
      <dc:creator>pm68</dc:creator>
      <dc:date>2023-05-02T13:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying variance-covariance matrix with SAS GAMPL</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873377#M43209</link>
      <description>&lt;P&gt;Instead of using GAMPL, consider using a modeling procedure that offers the EFFECT statement (GLIMMIX, LOGISTIC, ORTHOREG, and others) which can add spline effects to your model. You could then use the COVB (or other option depending on the procedure) to display and/or save the parameter covariance matrix. Or use the STORE statement in the procedure (if available) to save the model and then use PROC PLM to test additional hypotheses.&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 14:31:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873377#M43209</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-05-02T14:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying variance-covariance matrix with SAS GAMPL</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873401#M43212</link>
      <description>Hi StatDave,&lt;BR /&gt;&lt;BR /&gt;Thanks for your quick answer and for drawing my attention on these&lt;BR /&gt;procedures; I did not realize these could add spline effects.&lt;BR /&gt;Unfortunately, I am exploring models with Tweedie distributions (I&lt;BR /&gt;should probably have stated this earlier), and I do not think any of&lt;BR /&gt;these procedures can accomodate this?&lt;BR /&gt;</description>
      <pubDate>Tue, 02 May 2023 15:18:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873401#M43212</guid>
      <dc:creator>pm68</dc:creator>
      <dc:date>2023-05-02T15:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying variance-covariance matrix with SAS GAMPL</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873427#M43214</link>
      <description>&lt;P&gt;As noted in the list of Frequently Asked-for Statistics (FASTats) in the Important Links section of the Statistical Procedures Community page, the Tweedie distribution is available in GENMOD and HPGENSELECT, but these do not offer the EFFECT statement (the Tweedie is also available in some procedures in SAS Viya). One way around this is to use a procedure that supports the EFFECT statement to build and save the design matrix columns needed for your model and then use them as input in GENMOD or HPGENSELECT to fit your Tweedie model. PROC LOGISTIC can do that by using the OUTDESIGN= and OUTDESIGNONLY options (see &lt;A href="http://support.sas.com/kb/23217" target="_self"&gt;this note&lt;/A&gt;). For example, these statements create a data set, OD, that contains the design matrix containing columns for the spline effect on the variable BLAST. It then uses those columns (SB: is shorthand for all variables starting with SB) in the model.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=remiss outdesign=od outdesignonly;
effect sb=spline(blast/naturalcubic);
model infil = smear sb ;
run;
proc genmod data=od;
model infil = smear sb: / dist=tweedie;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 May 2023 16:40:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873427#M43214</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-05-02T16:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying variance-covariance matrix with SAS GAMPL</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873585#M43219</link>
      <description>&lt;P&gt;Thanks very much StatDave, it seems to work!&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 10:53:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Displaying-variance-covariance-matrix-with-SAS-GAMPL/m-p/873585#M43219</guid>
      <dc:creator>pm68</dc:creator>
      <dc:date>2023-05-03T10:53:25Z</dc:date>
    </item>
  </channel>
</rss>

