tabulator(data.filter(d=>d.confirmed>0), {
paginationSize: 20,
columns: [
{title:"Country/Region", field: "country"},
{title:"State/Province", field: "state"},
{title:"Confirmed", field: "confirmed"},
{title:"Deaths", field: "deaths"},
{title:"Recovered", field: "recovered"},
{title:"Active", field: "active"},
{title:"Death Rate(%)", field: "dr", formatter:function(cell) {return ""+(Math.round(cell.getValue()*10000) / 100)+"%";}},
{title:"Daily Growth", field: "avgr", formatter: function(cell) {return (Math.round((cell.getValue()-1)*10000) /100)+"%"}},
{title:"Doubling", field: "avgr", formatter: function(cell){return Math.round(Math.log(2) / Math.log(cell.getValue()))}}
]
})