BookmarkSubscribeRSS Feed
Pooja
Fluorite | Level 6

Hello,

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.

Thank you very much in advance.

Pooja 

4 REPLIES 4
ets_kps
SAS Employee

Hello Pooja,

The model you describe of healthcare costs associated with a hospitalization or emergency utilization sounds as if it might  be framed as a censored or truncated regression, depending on how
much you don’t know about the units of observation.

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. http://support.sas.com/documentation/cdl/en/etsug/65545/HTML/default/viewer.htm#etsug_qlim_examples0...

Exmple code for a simple censoring problem might look like,

/*-- Tobit Model --*/

proc qlim data=subset;

   model cost = x1 x2;

   endogenous cost ~ censored(lb=0);

run;

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.  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.

Thanks for your question-Ken 

Pooja
Fluorite | Level 6

Hello Ken,

Thank you very much for your reply and willingness to help.

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  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  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.

Please do let me know if you need more information. Any help will be greatly appreciated.

Thanks,

Pooja

Chiel
Calcite | Level 5

Hi Pooja,

I think you refer to the Heckman model (or Heckit) as described in http://en.wikipedia.org/wiki/Heckman_correction

I've estimated that type of model using this SAS code: http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0204b&L=sas-l&P=39988

You might also want to look at http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0409c&L=sas-l&P=47590

Let me know if this helps!

Chiel

SteveDenham
Jade | Level 19

Another possibility is PROC FMM if you are running SAS/STAT12.1.  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.  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.

Steve Denham

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 3507 views
  • 0 likes
  • 4 in conversation