to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
Now that we've revealed the pace at which the most prolific abortion providers in the United States conduct their business, it's time to consider their primary motivating factor behind achieving such economies of scale: revenue.
To do that, we'll need to determine the average amount of money collected for each abortion performed in the United States based upon their annual caseloads. Fortunately, the Guttmacher Institute has once again collected the data we need to construct a model by which we can estimate the average price paid for an abortion in the U.S. depending upon the annual volume of abortions performed by the provider.
We've summarized what we found in the chart below, which applies to all abortions provided in non-hospital settings that are performed at approximately 10 weeks of gestation. (As we noted in our previous post, abortions performed in hospitals predominantly are done for medical reasons, where at least a portion of the price paid might be covered by a patient's health insurance.) This data then encompasses the average prices paid that apply for over 80% of all abortions performed in the United States.
The graph above somewhat resembles a demand curve from economics, where the lowest amount of a quantity demanded corresponds to the highest price, and the greatest amount of a quantity demanded corresponds to the lowest price.
We next took the mathematical relationship we modeled based upon the Guttmacher Institute's data and built a tool, which will allow us to estimate the average price paid for an abortion according to the provider's annual caseload for the procedure. Given the difference between these average prices and the median price charged by non-hospital abortion providers as reported by the Guttmacher Institute, we believe our tool's results will be within 5% of the actual values.
We then went the extra mile to estimate the abortion provider's annual revenue from performing abortions.
For the default data, we find that an abortion provider that performs 1000 abortions per year will collect an average of $484 from each patient, generating over $484,100 in a year.
Plugging in Planned Parenthood's total reported abortion count of 324,008 for 2008 into the tool suggests that the average price paid by a patient at their clinics is $418.61, which would put their annual revenue for performing this volume of abortions at $135,633,517.
That annual revenue figure could actually be higher though, since we omitted later term abortion price data from our model. Consequently, this value would represent a low-end estimate of Planned Parenthood's total revenue from performing abortion procedures in 2008.
Jones, Rachel K. and Kooistra, Kathryn. Guttmacher Institute. Abortion Incidence and Access to Services in the United States, 2008: TABLE 6. Charges and average amount paid for nonhospital surgical abortions at 10 and 20 weeks’ gestation and for early medication abortions—all by provider type and caseload, 2009. Perspectives on Sexual and Reproductive Health. Volume 43, Issue 1. 10 January 2011.
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.