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
Who loans money to the U.S. government?
We've developed the following chart to answer that question, which is a companion to the 'donut' national debt ownership chart we've featured in the latest update to our "To Whom Does the U.S. Government Owe Money?" series.
For this chart, we've used a bar chart format to present the actual amounts owed to the U.S. government's major creditors, where we've also simplified the foreign-held portion of the data by splitting it up according to the type of creditor rather than by country.
In doing that, we find that private institutions (such as banks, insurance companies, mutual funds, etc.) and individuals make up the single largest category of lenders to the U.S. government with a combined total of $9,053 billion owed to U.S. and foreign holders of U.S. government-issued debt securities, such as Treasury bonds, short term debt, and federal agency bonds. Combined, these lenders own 42% of the $21,516 billion U.S. national debt recorded at the end of September 2018.
The second largest category is central banks, which for the U.S. means the Federal Reserve, and for the foreign category, refers to "foreign official" institutions. Together, the world's central banks account for $6,708 billion of all money owed by the U.S. government to its creditors, or 31% of the total public debt outstanding, with the Federal Reserve accounting for 12.5% of that amount.
The remaining categories we've broken out are covered by the U.S. government's "intragovernmental holdings" of the U.S. national debt, which includes the trust funds for Social Security and for Federal Hospital Insurance, as well as federal government operated pension funds for its civil service and military employees. These make up the "Big 4" holders of the U.S. national debt within the U.S. government, and with all other U.S. government holdings as of the end of the 2018 fiscal year, add up to $5,755 billion.
This latter category has begun to shrink because Social Security is now running an operating deficit, taking in less money than it spends, which means it has to cash in the U.S. debt securities it holds to make up the difference for paying out retirement pension benefits at promised levels to retired Americans.
U.S. Department of the Treasury. Treasury International Capital (TIC) System. Securities (B): Portfolio Holdings of U.S. and Foreign Securities. [Data Resources]. Accessed 27 August 2019.
U.S. Department of the Treasury. Treasury International Capital (TIC) System. Monthly Holdings of U.S. Long-term Securities at Current Market Value by Foreign Residents. [CSV Data]. June 2019.
U.S. Department of the Treasury. Debt to the Penny. [Online Application]. 28 September 2018.
U.S. Department of the Treasury. Treasury International Capital (TIC) System. Historical Liabilities to Foreigners by Type and Holder. Short-term securities. Historical Data. [CSV Data]. June 2019.
U.S. Department of the Treasury. Final Monthly Treasury Statement of Receipts and Outlays of the United States Government for Fiscal Year 2018 Through September 30, 2018, and Other Periods. [PDF Document]. 12 October 2019.
Labels: data visualization, national debt
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.