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
When Joe Biden was sworn in as President of the United States on 20 January 2021, the U.S. national debt had reached $27.8 trillion. Through the end of the U.S. government's fiscal year on 30 September 2021, the total public debt outstanding increased to $28.4 trillion.
The following chart identifies the entities who have loaned the most money to the U.S. government. The percentage shown for each indicates how big each entity's share of the U.S. national debt is as of 30 September 2021.
The values for foreign nations shown on the chart represent a first estimate because the U.S. Treasury Department's data for the amount of U.S. government-issued debt held by foreign entities only reflects its estimates through August 2021. Data through September 2021 will become available next month, which will be subject to revision before being finalized sometime in 2022.
Once again, the U.S. Federal Reserve is Uncle Sam's largest single entity creditor, outranking its former top creditor, Social Security's Old Age and Survivors Insurance Trust Fund, by a widening margin. That margin is widening because Social Security is running in the red, which means it has to cash in its holdings of U.S. Treasuries to keep paying benefits to Social Security beneficiaries at promised levels.
But what is really remarkable is the extent to which the U.S. Federal Reserve is funding the U.S. government's spending above and beyond what it collects in taxes that has taken place during Joe Biden's tenure in office. Since 20 January 2021, the U.S. national debt has increased by $669.3 billion, but the U.S. Federal Reserve's holdings of U.S. government-issued debt securities has increased by $687.5 billion.
That's possible because the U.S. Federal Reserve has more than offset a net reduction of $520.4 billion in the amount of money other U.S. entities have loaned to the U.S. government during this time. At the same time, foreign entities have boosted the amount of money they've loaned to the U.S. government by $502.2 billion, which when combined with the other figures, accounts for the overall net change since 20 January 2021. Here's a visual rundown of the net national debt change math as presented using a waterfall chart:
As of the end of the U.S. government's 2021 fiscal year, the Federal Reserve had loaned nearly one out of every five dollars the U.S. government owed through the end of September 2021.
These figures represent the most current information available as of 30 September 2021, which for the total public debt outstanding and data on U.S. government entity holdings is current through that date. The Federal Reserve's holdings is fully current through 29 September 2021. Data for foreign holdings is based on estimates through August 2020 that were published on 18 October 2021.
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.