diff --git a/docs/SymptomsCausedByCOVIDLots/index.html b/docs/SymptomsCausedByCOVIDLots/index.html index f47674f28d6..d636a307d92 100644 --- a/docs/SymptomsCausedByCOVIDLots/index.html +++ b/docs/SymptomsCausedByCOVIDLots/index.html @@ -40,6 +40,7 @@ + + @@ -30,6 +31,7 @@ + diff --git a/docs/Utils.js b/docs/Utils.js index e9e315a7ee7..97c9452177d 100644 --- a/docs/Utils.js +++ b/docs/Utils.js @@ -24,4 +24,6 @@ class Utils { static sliceDict(dict, start, end) { return Object.fromEntries(Object.entries(dict).slice(start, end)); } + + static zip = rows => rows[0].map((_, c) => rows.map(row => row[c])) }