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
January 2023 should have seen U.S. imports from China rebound following the Chinese government's lifting of its failed zero-COVID lockdowns at the end of December 2022. Because those lockdowns had greatly disrupted significant sectors of China's export-generating economy, their end should have opened the door to a much higher level of goods being shipped to the United States.
That didn't happen. While the level of China's exports to the U.S. increased by 2.5% from December 2022's total to $38.3 billion in January 2023, it fell far short of its potential. Compared with January 2022, the level of U.S. imports from China is down by 20.1%.
That shortfall is responsible for pulling down the combined value of goods traded between the U.S. and China, continuing a trend that began in September 2022. This latest development has further pulled the trailing twelve month average of the combined value of goods traded between the U.S. and China below a counterfactual trajectory based on the recovery of trade between the countries after 2008-09 Great Recession. The following chart shows the post-pandemic trade recovery is now $3.6 billion below the alternate trajectory:
Looking forward, the latest trade news coming out from China indicates that shortfall will continue into February:
China's exports for the January-February period fell, pointing to continued weakness in foreign demand and backing government concerns that a global slowdown will hamper the country's recovery from pandemic-era damage.
Imports dropped, too, government data showed on Tuesday, also reflecting weak foreign demand, since the country brings in parts and materials from abroad for many of its exports.
"Given the high inflation in the U.S. and Europe, demand from there should keep weakening, which also dampens the processing demand in China," said Iris Pang, chief economist for Greater China at ING.
Adjusted for inflation, the real value of goods being traded between the U.S. and China has fallen by more than the official customs data indicates.
U.S. Census Bureau. Trade in Goods with China. Last updated: 7 March 2023.
Image credit: Photo by Steve Saunders on Unsplash.
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.