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
One year ago, the spread of SARS-CoV-2 coronavirus infections prompted New York to declare the first state of emergency in the U.S. as the coronavirus pandemic gained a foothold within the country.
One year later, after having infected over 7.8 million Americans and proving fatal for over 515,000 predominantly older Americans, we can confirm the coronavirus appears to be in full retreat across all U.S. states.
The dramatic declines that had just begun in our monthly previous update have continued, as the COVID-19 vaccines developed under the Trump administration's Operation Warp Speed program are proving to be successful in protecting those who have been vaccinated. Combined with reduced social mixing following the end of 2020's holiday season, the trajectories for the daily progression of COVID-19 infections, test positivity rate, and 7-day moving averages for newly confirmed cases and deaths are each showing signs of significant improvements.
The better news is that the improved conditions at the national level are also confirmed at the state and territory level.
The latest update to our signature skyline tower chart ranks the progression of positive COVID-19 cases in the U.S. by state or territory according to the reported percentage of cases within the state or territory's population. The individual charts depict the number of positive cases, the number of recovered patients or those discharged from hospitals, the number of hospitalized patients and the number of deaths. Each of these charts is presented in the same scale with respect to the size of its population over the period from 10 March 2020 through 7 March 2021. This presentation makes it very easy to visually compare a given state's or territory's experience with others.
Among individual states, North Dakota and South Dakota rank at the top in the measure of the percentage of population who has tested positive for COVID-19, thanks largely to their comparatively small populations. Low population Rhode Island ranks third, having climbed up to that position during the late fall, winter surge in COVID-19 cases in the northeastern U.S.
The individual tower charts for individual states and territories are increasingly taking on the 'bell' shape that indicates substantial slowing in the incidence of new COVID-19 infections.
Throughout this series, we've often compared New York's experience with the coronavirus pandemic to those of other states. New York's COVID-19 story however has taken a dramatic turn in 2021, where we've launched a new blog to provide an ongoing general timeline of th developing story of Governor Cuomo's nursing home scandals.
Since this week marks the anniversary of the beginning of the coronavirus pandemic in the U.S., we've focused on the major events of March 2020, when those scandals have their origins. We'll bring the new blog's timeline fully up-to-date over the next two weeks.
On a final note, the COVID Tracking Project, which supplied much of the data we've visualized and analyzed in this series, has posted its final update. With it closing up shop, this will be our last update to this series.
We've regularly tracked the progression of the coronavirus pandemic within the United States since data for it began being tracked on 10 March 2020. Here are the previous entries in our series featuring the skyline tower charts we developed to visualize its rates of spread within the individual states and territories of the U.S., presented in reverse chronological order.
Labels: coronavirus, data visualization
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.