What interesting statistical information can I dig out of this medical billing data?
November 19, 2009 11:37 AM
Subscribe
What interesting statistical information can I dig out of this medical billing data?
I have 2000 rows of medical billing information (mysql) with the following attributes. I've normalized the data and here is a very simple description:
patient:
id
dob
city/state/zip
primary insurance provider
secondary insurance provider
provider:
id
procedure:
procedure id/code
patient_procedure:(fk to patient & provider & procedure)
procedure date
billed amount
Unfortunately, the data only spans one month so I can't provide anything interesting across a date dimension beyond aggregating certain measures by weekday.
I've already produced a lot of information such as
% of patients with no secondary insurance
avg age for procedure
top-5 most frequently occurring procedures with large avg cost
billing and frequency by zipcode
so on and so forth-measure X across dimension Y
I'm looking for suggestions for some deeper analysis than the many SQL aggregates that I've performed.
posted by neilkod to computers & internet (8 comments total)
1 user marked this as a favorite
2) Run some analysis on gender. Beyond the fact that women see ob/gyn specialists and don't get prostate cancer, I'd imagine there's a bunch of interesting things to be teased out here.
3) See if you can figure out what percentage of insurers aren't actually health insurers, i.e. workers' compensation or P&C carriers.
Those are the things I'd be interested in off the top of my head. I'm sure others will have juicier suggestions.
posted by valkyryn at 11:42 AM on November 19, 2009