<?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: Two part model for correlated health care costs in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93207#M4572</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pooja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you refer to the Heckman model (or Heckit) as described in &lt;A href="http://en.wikipedia.org/wiki/Heckman_correction"&gt;http://en.wikipedia.org/wiki/Heckman_correction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I've estimated that type of model using this SAS code: &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0204b&amp;amp;L=sas-l&amp;amp;P=39988"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0204b&amp;amp;L=sas-l&amp;amp;P=39988&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might also want to look at &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0409c&amp;amp;L=sas-l&amp;amp;P=47590"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0409c&amp;amp;L=sas-l&amp;amp;P=47590&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Let me know if this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chiel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2013 09:39:26 GMT</pubDate>
    <dc:creator>Chiel</dc:creator>
    <dc:date>2013-02-07T09:39:26Z</dc:date>
    <item>
      <title>Two part model for correlated health care costs</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93204#M4569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have healthcare cost data for two different drugs (inpatient hospitalization and emergency department visits costs) which have a large number of zeros. I have also used propensity score matching to match patients taking the two drugs on a list of different covariates. Since there are so many zeros, I wanted to use a two-part model for the costs. Could someone please direct me where to look for the SAS code or help me with the basic code if they already have it ready.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 21:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93204#M4569</guid>
      <dc:creator>Pooja</dc:creator>
      <dc:date>2012-12-06T21:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Two part model for correlated health care costs</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93205#M4570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pooja, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The model you describe of healthcare costs associated with a hospitalization or emergency utilization sounds as if it might&amp;nbsp; be framed as a censored or truncated regression, depending on how&lt;BR /&gt;much you don’t know about the units of observation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Going off your description, it sounds as if you might estimate your model using some variant of a Tobit model that you would find in PROC QLIM. The following links to the QLIM documentation that discusses these models. &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/65545/HTML/default/viewer.htm#etsug_qlim_examples02.htm"&gt;http://support.sas.com/documentation/cdl/en/etsug/65545/HTML/default/viewer.htm#etsug_qlim_examples02.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exmple code for a simple censoring problem might look like,&lt;/P&gt;&lt;P&gt;/*-- Tobit Model --*/&lt;/P&gt;&lt;P&gt;proc qlim data=subset;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; model cost = x1 x2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; endogenous cost ~ censored(lb=0);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without knowing more information as to what your data look like and what you are interested in learning from your data, I can only point you to the documentation and the samples within the doc.&amp;nbsp; If you are interested in sharing additional information about the research question and perhaps a model, I would be happy to work with you to specify the regression in PROC QLIM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for your question-Ken&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 16:27:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93205#M4570</guid>
      <dc:creator>ets_kps</dc:creator>
      <dc:date>2012-12-07T16:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Two part model for correlated health care costs</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93206#M4571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your reply and willingness to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking at the healthcare costs and utilization of patients initiated on four different medications for Attention Deficit Hyperactive Disorder (ADHD). I assumed one drug to be the control and used propensity score matching to match patients initiated on that drug to each of the three other drugs (I used 3 separate models). Now for the inpatient and ED costs, large proportion of the patients have zero since they did not have these events. I am interested&amp;nbsp; in getting the difference in cost between the control drug and each of the 3 case drugs after controlling for the propensity score and the covariates that I used to obtain my propensity score. Based on briefly reviewing the literature, I saw that it is possible to use a two-part model for excessive zeros where the first&amp;nbsp; part is a logistic regression and the second part could be gamma regression, normal regression etc. However, I am not familiar with such models. You have suggested a variant of the tobit model. I am not familiar with the differences between tobit and logit models.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do let me know if you need more information. Any help will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 05:37:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93206#M4571</guid>
      <dc:creator>Pooja</dc:creator>
      <dc:date>2012-12-08T05:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Two part model for correlated health care costs</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93207#M4572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pooja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you refer to the Heckman model (or Heckit) as described in &lt;A href="http://en.wikipedia.org/wiki/Heckman_correction"&gt;http://en.wikipedia.org/wiki/Heckman_correction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I've estimated that type of model using this SAS code: &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0204b&amp;amp;L=sas-l&amp;amp;P=39988"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0204b&amp;amp;L=sas-l&amp;amp;P=39988&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might also want to look at &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0409c&amp;amp;L=sas-l&amp;amp;P=47590"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0409c&amp;amp;L=sas-l&amp;amp;P=47590&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Let me know if this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chiel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 09:39:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93207#M4572</guid>
      <dc:creator>Chiel</dc:creator>
      <dc:date>2013-02-07T09:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Two part model for correlated health care costs</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93208#M4573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another possibility is PROC FMM if you are running SAS/STAT12.1.&amp;nbsp; This proc enables you to specify a mixing probability function (say a binomial) and a model distribution (say the gamma), at least as I read the documentation, especially Example 37.1.&amp;nbsp; I have to provide the caveat that I have not yet run any real data through PROC FMM, so I will be curious to find out if you are able to use the procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:25:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Two-part-model-for-correlated-health-care-costs/m-p/93208#M4573</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-02-07T13:25:50Z</dc:date>
    </item>
  </channel>
</rss>

