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
According to international trade data reported by the U.S. Census Bureau, the United States' overall trade deficit with the rest of the world shrank to its lowest level in three years in November 2019:
The U.S. trade deficit has fallen by more than 8 percent, to $43.1 billion, reaching its lowest level in President Donald Trump's administration, government figures showed Tuesday.
The report showed the deficit decreased in November, the most recent month for which the government has figures, by $3.9 billion -- a decline of 8.2 percent....The analysis said the lion's share of the shrinking trade deficit resulted from a reduction in the gap with China -- which decreased $2.2 billion to $25.6 billion in November. Imports from China decreased by $800 million.
That's all this particular article had to say on the topic, but it misses a much bigger story. In addition to the decrease in the goods the U.S. imports from China, U.S. exports to China spiked up in November 2019, fueled by China's suppressed appetite for U.S.-grown soybeans and its undiminished appetite for pork, with China turning to global markets to address the impact of African Swine Fever on its domestic hog population, which has created a massive shortage of the popular protein within the country.
You can see both factors at work on the right-hand side of the following chart, which tracks the year-over-year exchange rate-adjusted growth rate of goods traded between the U.S. and China from January 1986 through November 2019:
Most of that year-over-year effect for the spike in U.S. exports to China in November 2019 relies upon the very low level of U.S. exports of soybeans back in November 2018, when Chinese buyers were persuaded by China's retaliatory tariffs to effectively boycott purchases of the U.S. crop - a boycott that cracked in November 2019 when China began to waive its punitive tariffs in anticipation of a trade deal with the U.S. government. At the same time, the U.S. government had not yet fully implemented its tariffs on Chinese exports to the U.S., so the volume of those goods remained high through the end of 2018. A year later, with U.S. tariffs now fully applied, Chinese exports to the U.S. have fallen sharply because they are now costing U.S. businesses and consumers much more than a year ago.
In any case, that's a more complete version of what happened during November 2019 that led to the lowest monthly trade deficit of the last three years being recorded in the U.S.
Labels: trade
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.