Performance improvements to hillmaker

numpy is snappy

hillmaker
python
Author

Mark Isken

Published

May 19, 2022

The first Python versions of hillmaker (0.1.0 - 0.2.3) were focused on just getting it working correctly. Speed was a secondary concern. Most computations were done directly in pandas including a lot of “cell” updating of a pandas dataframe. All of this dataframe updating made things slow.

Recently I overhauled the way that the occupancy by datetime values were being computed:

I also fixed a dumb thing I was doing in computing the percentiles by making sure I passed the entire list of desired percentiles to the pandas percentile function (I was iterating through a list of percentiles - oops).

It worked. My standard benchmark dataset (ShortStay.csv) is just under 60k records with five unique category (patient type) values. Running hillmaker with a bin size of 60 minutes took about one minute on a standard laptop. After the numpy related changes, the same run is ~8 seconds. Of that, between 6-7 seconds are devoted to the summary statistic computations (pandas). Perhaps that can be sped up, but it’s not worth my time right now to worry about it.

In addition to the speedup, I also:

A few things haven’t changed:

I’m really hoping to get documentation written this summer.