{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Causal Analysis of *How is the implementation of existing strategies affecting the rates of COVID-19 infection?*" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "*(Better displayed in [nbviewer](https://nbviewer.jupyter.org/) as red warnings in font tag may not be displayed on github)*\n", "\n", "We believe that a question such as *How is the implementation of existing strategies affecting the rates of COVID-19 infection?* requires a proper causal analysis of the data.\n", "\n", "Such question requires considering what the *causal effect* of certain strategies may be, and an evaluation of *counterfactual effects*.\n", "\n", "To answer this question we rely on the formalism of [*causal models*](http://bayes.cs.ucla.edu/BOOK-2K/) and the [*dowhy*](https://github.com/microsoft/dowhy) library.\n", "\n", "\n", "### Disclaimer\n", "In this notebook we setup a **preliminary template** for a causal analysis of this question. In particular, we analyze data and we discusse its relevance.\n", "\n", "**This is a work in progress.** Publishing this notebook has the sole aim to share an initial analysis and draws suggestions and critiques for improvement.\n", "\n", "In no way, at the moment, these results should be taken to be significant. The data considered are limited, the model simplistic and debatable. **NO conclusions on real world policies should be drawn from this notebook**. \n", "\n", "Limitations will be highlighted in the notebook in RED (coloured fonts may not be displayed on github)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Collecting treatment data for causal analysis\n", "\n", "The aim of this notebook is to consider which sort of data we may need and we may collect for a proper causal model, focusing in particular on (i) treatment/exposure data.\n", "\n", "In our model we may consider as *individuals* or *units* countries. This presents some relevant problems. Problems concerning the quality and quantity of the data are:\n", "- We can collect as many individual as countries (around 200). Is this enough for a reliable analysis?\n", "- Data for different countries are reported by different sources. Is the quality of this data sufficiently homogeneous?\n", "\n", "This may be given we can not otherwise address.\n", "\n", "Problems concerning the causal analysis are related to necessary assumptions for analysis:\n", "- With respect to SUTVA (stable unit treatment value assumption), can we assume that the outcome of one individual does not affect other individuals, that is, the outcome of a country is not affected by another?\n", "- With respect to SUTVA again, can we assume that the treatment is the same for every individual, that is for every country?\n", "\n", "These two questions are particularly hard to answer, and requires **strong** assumptions. For instance, we may assume that the outcome of a quarantined country once affected by the pandemic is independent from the outcome of other countries. Similarly, we may assume that, although policies are inevitably implemented in different ways in different countries, they may be taken to be roughly the same.\n", "\n", "The following analysis will be based on these assumptions." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Treatment data\n", "\n", "In our model we want to evaluate the efficacy of policies enacted to contain the spread of covid-19. Naturally, we want to consider what measures are available." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Importing libraries" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import pandas as pd\n", "\n", "import matplotlib\n", "import matplotlib.cm as cm\n", "import matplotlib.pyplot as plt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Retrieving data\n", "\n", "We collect information from the *HDE* dataset. This dataset reports measures adopted by each country together with the date the measure was adopted. We load the dataset, convert dates in a proper format, and check the cardinality of important fields." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Number of measures: 39\n", "Number of countries: 193\n", "Number of days: 121\n" ] } ], "source": [ "HDE_df = pd.read_csv('HDE_update/acaps-covid-19-government-measures-dataset.csv')\n", "HDE_df['date_implemented'] = pd.to_datetime(HDE_df['date_implemented'],format=\"%Y-%m-%d\",errors='coerce')\n", "\n", "measures = list(HDE_df['measure'].unique())\n", "countries = list(HDE_df['iso'].unique()) \n", "days = (HDE_df['date_implemented'].max() - HDE_df['date_implemented'].min()).days\n", "\n", "print('Number of measures: {0}'.format(len(measures)))\n", "print('Number of countries: {0}'.format(len(countries)))\n", "print('Number of days: {0}'.format(days))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The countries (193) could ideally be taken as our *individuals* or *units*. As expected, the number of samples is limited.\n", "\n", "The dataset spans a wide range of days (121). This is inevitabile as these *measures/policies/treatments* are intended to work on timescale of multiple days or weeks. This unfortunately seems to preclude the preclude to perform a *discontinuity analysis* as the effect are expected to show up way after the discontinuity. Likely it will require the use of a *time-varying model*.\n", "\n", "The number of measures is relatively high as well (39). This complicates the investigation as different countries enact several different policies at the same time, and it may be very hard to disentangle which policy may be responsible for which effect." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Considering treatments\n", "\n", "The large number of treatments raises a hard challenge: in a time-varying model we want to contrast two policies between two groups of individuals *ceteribus paribus* (keeping all other things similar or adjusted). Now, we can not *ignore* any measure, as any measure may be responsible for the effects that we observe.\n", "\n", "This leads to an exponential number of possible treatments. A single treatment is given by a decision about each individual measure (39) on the range of days considered. Given we consider binary treatments, just on a single day we may have up to $2^{39}$ different treatments.\n", "\n", "We collect the treatment followed by each individual country in matrix, where rows are measures and columns days." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "In country AFG measure Health screenings in airports and border crossings was implemented on 2020-02-12 00:00:00\n", "In country AFG measure Introduction of isolation and quarantine policies was implemented on 2020-02-12 00:00:00\n", "In country AFG measure Awareness campaigns was implemented on 2020-02-12 00:00:00\n", "In country AFG measure Emergency administrative structures activated or established was implemented on 2020-02-12 00:00:00\n", "In country AFG measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country AFG measure Border closure was implemented on 2020-02-24 00:00:00\n", "In country AFG measure Schools closure was implemented on 2020-03-01 00:00:00\n", "In country AFG measure Strengthening the public health system was implemented on 2020-03-01 00:00:00\n", "In country AFG measure Limit product imports/exports was implemented on 2020-03-01 00:00:00\n", "In country AFG measure Border checks was implemented on 2020-02-01 00:00:00\n", "In country AFG measure International flights suspension was implemented on 2020-01-27 00:00:00\n", "In country AFG measure Surveillance and monitoring was implemented on 2020-02-13 00:00:00\n", "In country AFG measure Other public health measures enforced was implemented on 2020-02-20 00:00:00\n", "In country AFG measure Domestic travel restrictions was implemented on 2020-02-24 00:00:00\n", "In country AFG measure State of emergency declared was implemented on 2020-02-24 00:00:00\n", "In country AFG measure General recommendations was implemented on 2020-02-24 00:00:00\n", "In country AFG measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country AFG measure Checkpoints within the country was NEVER implemented\n", "In country AFG measure Economic measures was NEVER implemented\n", "In country AFG measure Curfews was NEVER implemented\n", "In country AFG measure Changes in prison-related policies was NEVER implemented\n", "In country AFG measure Public services closure was NEVER implemented\n", "In country AFG measure Military deployment was NEVER implemented\n", "In country AFG measure Full lockdown was NEVER implemented\n", "In country AFG measure Visa restrictions was NEVER implemented\n", "In country AFG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country AFG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country AFG measure Requirement to wear protective gear in public was NEVER implemented\n", "In country AFG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country AFG measure Testing policy was NEVER implemented\n", "In country AFG measure Psychological assistance and medical social work was NEVER implemented\n", "In country AFG measure Mass population testing was NEVER implemented\n", "In country AFG measure testing policy was NEVER implemented\n", "In country AFG measure limit public gatherings was NEVER implemented\n", "In country AFG measure strengthening the public health system was NEVER implemented\n", "In country AFG measure Humanitarian exemptions was NEVER implemented\n", "In country AFG measure Complete border closure was NEVER implemented\n", "In country AFG measure curfews was NEVER implemented\n", "In country AFG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ALB measure Health screenings in airports and border crossings was implemented on 2020-03-19 00:00:00\n", "In country ALB measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country ALB measure Awareness campaigns was implemented on 2020-03-11 00:00:00\n", "In country ALB measure Emergency administrative structures activated or established was implemented on 2020-03-22 00:00:00\n", "In country ALB measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country ALB measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country ALB measure Schools closure was implemented on 2020-03-10 00:00:00\n", "In country ALB measure Strengthening the public health system was implemented on 2020-03-19 00:00:00\n", "In country ALB measure Limit product imports/exports was implemented on 2020-03-08 00:00:00\n", "In country ALB measure Border checks was NEVER implemented\n", "In country ALB measure International flights suspension was implemented on 2020-03-09 00:00:00\n", "In country ALB measure Surveillance and monitoring was NEVER implemented\n", "In country ALB measure Other public health measures enforced was implemented on 2020-01-24 00:00:00\n", "In country ALB measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country ALB measure State of emergency declared was NEVER implemented\n", "In country ALB measure General recommendations was implemented on 2020-03-22 00:00:00\n", "In country ALB measure Partial lockdown was implemented on 2020-04-02 00:00:00\n", "In country ALB measure Checkpoints within the country was implemented on 2020-03-10 00:00:00\n", "In country ALB measure Economic measures was implemented on 2020-03-12 00:00:00\n", "In country ALB measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country ALB measure Changes in prison-related policies was implemented on 2020-03-24 00:00:00\n", "In country ALB measure Public services closure was implemented on 2020-03-10 00:00:00\n", "In country ALB measure Military deployment was implemented on 2020-03-11 00:00:00\n", "In country ALB measure Full lockdown was NEVER implemented\n", "In country ALB measure Visa restrictions was NEVER implemented\n", "In country ALB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ALB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ALB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ALB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ALB measure Testing policy was NEVER implemented\n", "In country ALB measure Psychological assistance and medical social work was NEVER implemented\n", "In country ALB measure Mass population testing was NEVER implemented\n", "In country ALB measure testing policy was NEVER implemented\n", "In country ALB measure limit public gatherings was NEVER implemented\n", "In country ALB measure strengthening the public health system was NEVER implemented\n", "In country ALB measure Humanitarian exemptions was NEVER implemented\n", "In country ALB measure Complete border closure was NEVER implemented\n", "In country ALB measure curfews was NEVER implemented\n", "In country ALB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DZA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country DZA measure Introduction of isolation and quarantine policies was implemented on 2020-03-18 00:00:00\n", "In country DZA measure Awareness campaigns was implemented on 2020-03-05 00:00:00\n", "In country DZA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country DZA measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country DZA measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country DZA measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country DZA measure Strengthening the public health system was NEVER implemented\n", "In country DZA measure Limit product imports/exports was NEVER implemented\n", "In country DZA measure Border checks was implemented on 2020-03-12 00:00:00\n", "In country DZA measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country DZA measure Surveillance and monitoring was NEVER implemented\n", "In country DZA measure Other public health measures enforced was NEVER implemented\n", "In country DZA measure Domestic travel restrictions was implemented on 2020-03-22 00:00:00\n", "In country DZA measure State of emergency declared was NEVER implemented\n", "In country DZA measure General recommendations was NEVER implemented\n", "In country DZA measure Partial lockdown was implemented on 2020-04-05 00:00:00\n", "In country DZA measure Checkpoints within the country was NEVER implemented\n", "In country DZA measure Economic measures was NEVER implemented\n", "In country DZA measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country DZA measure Changes in prison-related policies was NEVER implemented\n", "In country DZA measure Public services closure was implemented on 2020-03-20 00:00:00\n", "In country DZA measure Military deployment was implemented on 2020-03-23 00:00:00\n", "In country DZA measure Full lockdown was implemented on 2020-03-23 00:00:00\n", "In country DZA measure Visa restrictions was NEVER implemented\n", "In country DZA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DZA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country DZA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DZA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DZA measure Testing policy was NEVER implemented\n", "In country DZA measure Psychological assistance and medical social work was NEVER implemented\n", "In country DZA measure Mass population testing was NEVER implemented\n", "In country DZA measure testing policy was NEVER implemented\n", "In country DZA measure limit public gatherings was NEVER implemented\n", "In country DZA measure strengthening the public health system was NEVER implemented\n", "In country DZA measure Humanitarian exemptions was NEVER implemented\n", "In country DZA measure Complete border closure was NEVER implemented\n", "In country DZA measure curfews was NEVER implemented\n", "In country DZA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country AGO measure Health screenings in airports and border crossings was implemented on 2020-03-03 00:00:00\n", "In country AGO measure Introduction of isolation and quarantine policies was implemented on 2020-03-03 00:00:00\n", "In country AGO measure Awareness campaigns was implemented on 2020-03-11 00:00:00\n", "In country AGO measure Emergency administrative structures activated or established was implemented on 2020-04-06 00:00:00\n", "In country AGO measure Limit public gatherings was implemented on 2020-04-04 00:00:00\n", "In country AGO measure Border closure was NEVER implemented\n", "In country AGO measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country AGO measure Strengthening the public health system was implemented on 2020-03-27 00:00:00\n", "In country AGO measure Limit product imports/exports was implemented on 2020-03-27 00:00:00\n", "In country AGO measure Border checks was implemented on 2020-03-27 00:00:00\n", "In country AGO measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country AGO measure Surveillance and monitoring was NEVER implemented\n", "In country AGO measure Other public health measures enforced was NEVER implemented\n", "In country AGO measure Domestic travel restrictions was implemented on 2020-03-27 00:00:00\n", "In country AGO measure State of emergency declared was implemented on 2020-03-27 00:00:00\n", "In country AGO measure General recommendations was implemented on 2020-03-22 00:00:00\n", "In country AGO measure Partial lockdown was NEVER implemented\n", "In country AGO measure Checkpoints within the country was NEVER implemented\n", "In country AGO measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country AGO measure Curfews was NEVER implemented\n", "In country AGO measure Changes in prison-related policies was implemented on 2020-04-02 00:00:00\n", "In country AGO measure Public services closure was implemented on 2020-03-27 00:00:00\n", "In country AGO measure Military deployment was NEVER implemented\n", "In country AGO measure Full lockdown was NEVER implemented\n", "In country AGO measure Visa restrictions was implemented on 2020-03-04 00:00:00\n", "In country AGO measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-03-26 00:00:00\n", "In country AGO measure Additional health/documents requirements upon arrival was implemented on 2020-04-09 00:00:00\n", "In country AGO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country AGO measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country AGO measure Testing policy was NEVER implemented\n", "In country AGO measure Psychological assistance and medical social work was NEVER implemented\n", "In country AGO measure Mass population testing was NEVER implemented\n", "In country AGO measure testing policy was NEVER implemented\n", "In country AGO measure limit public gatherings was NEVER implemented\n", "In country AGO measure strengthening the public health system was NEVER implemented\n", "In country AGO measure Humanitarian exemptions was NEVER implemented\n", "In country AGO measure Complete border closure was NEVER implemented\n", "In country AGO measure curfews was NEVER implemented\n", "In country AGO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ATG measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ATG measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country ATG measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country ATG measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country ATG measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ATG measure Border closure was NEVER implemented\n", "In country ATG measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country ATG measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country ATG measure Limit product imports/exports was NEVER implemented\n", "In country ATG measure Border checks was NEVER implemented\n", "In country ATG measure International flights suspension was NEVER implemented\n", "In country ATG measure Surveillance and monitoring was NEVER implemented\n", "In country ATG measure Other public health measures enforced was implemented on 2020-03-28 00:00:00\n", "In country ATG measure Domestic travel restrictions was NEVER implemented\n", "In country ATG measure State of emergency declared was implemented on 2020-03-28 00:00:00\n", "In country ATG measure General recommendations was NEVER implemented\n", "In country ATG measure Partial lockdown was NEVER implemented\n", "In country ATG measure Checkpoints within the country was NEVER implemented\n", "In country ATG measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country ATG measure Curfews was implemented on 2020-03-28 00:00:00\n", "In country ATG measure Changes in prison-related policies was implemented on 2020-03-28 00:00:00\n", "In country ATG measure Public services closure was implemented on 2020-03-25 00:00:00\n", "In country ATG measure Military deployment was NEVER implemented\n", "In country ATG measure Full lockdown was implemented on 2020-04-02 00:00:00\n", "In country ATG measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country ATG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ATG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ATG measure Requirement to wear protective gear in public was implemented on 2020-03-28 00:00:00\n", "In country ATG measure Amendments to funeral and burial regulations was implemented on 2020-03-28 00:00:00\n", "In country ATG measure Testing policy was NEVER implemented\n", "In country ATG measure Psychological assistance and medical social work was NEVER implemented\n", "In country ATG measure Mass population testing was NEVER implemented\n", "In country ATG measure testing policy was NEVER implemented\n", "In country ATG measure limit public gatherings was NEVER implemented\n", "In country ATG measure strengthening the public health system was NEVER implemented\n", "In country ATG measure Humanitarian exemptions was NEVER implemented\n", "In country ATG measure Complete border closure was NEVER implemented\n", "In country ATG measure curfews was NEVER implemented\n", "In country ATG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country ARG measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ARG measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country ARG measure Awareness campaigns was implemented on 2020-02-17 00:00:00\n", "In country ARG measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ARG measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country ARG measure Border closure was implemented on 2020-03-26 00:00:00\n", "In country ARG measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country ARG measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country ARG measure Limit product imports/exports was NEVER implemented\n", "In country ARG measure Border checks was NEVER implemented\n", "In country ARG measure International flights suspension was implemented on 2020-03-12 00:00:00\n", "In country ARG measure Surveillance and monitoring was implemented on 2020-03-25 00:00:00\n", "In country ARG measure Other public health measures enforced was NEVER implemented\n", "In country ARG measure Domestic travel restrictions was implemented on 2020-03-19 00:00:00\n", "In country ARG measure State of emergency declared was implemented on 2020-03-19 00:00:00\n", "In country ARG measure General recommendations was NEVER implemented\n", "In country ARG measure Partial lockdown was implemented on 2020-03-19 00:00:00\n", "In country ARG measure Checkpoints within the country was NEVER implemented\n", "In country ARG measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country ARG measure Curfews was NEVER implemented\n", "In country ARG measure Changes in prison-related policies was NEVER implemented\n", "In country ARG measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country ARG measure Military deployment was NEVER implemented\n", "In country ARG measure Full lockdown was NEVER implemented\n", "In country ARG measure Visa restrictions was implemented on 2020-03-11 00:00:00\n", "In country ARG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ARG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ARG measure Requirement to wear protective gear in public was implemented on 2020-03-31 00:00:00\n", "In country ARG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ARG measure Testing policy was NEVER implemented\n", "In country ARG measure Psychological assistance and medical social work was NEVER implemented\n", "In country ARG measure Mass population testing was NEVER implemented\n", "In country ARG measure testing policy was NEVER implemented\n", "In country ARG measure limit public gatherings was NEVER implemented\n", "In country ARG measure strengthening the public health system was NEVER implemented\n", "In country ARG measure Humanitarian exemptions was NEVER implemented\n", "In country ARG measure Complete border closure was NEVER implemented\n", "In country ARG measure curfews was NEVER implemented\n", "In country ARG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ARM measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country ARM measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country ARM measure Awareness campaigns was implemented on 2020-01-31 00:00:00\n", "In country ARM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ARM measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ARM measure Border closure was implemented on 2020-02-24 00:00:00\n", "In country ARM measure Schools closure was implemented on 2020-03-02 00:00:00\n", "In country ARM measure Strengthening the public health system was NEVER implemented\n", "In country ARM measure Limit product imports/exports was NEVER implemented\n", "In country ARM measure Border checks was NEVER implemented\n", "In country ARM measure International flights suspension was implemented on 2020-03-23 00:00:00\n", "In country ARM measure Surveillance and monitoring was NEVER implemented\n", "In country ARM measure Other public health measures enforced was NEVER implemented\n", "In country ARM measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country ARM measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country ARM measure General recommendations was NEVER implemented\n", "In country ARM measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country ARM measure Checkpoints within the country was NEVER implemented\n", "In country ARM measure Economic measures was implemented on 2020-03-31 00:00:00\n", "In country ARM measure Curfews was NEVER implemented\n", "In country ARM measure Changes in prison-related policies was NEVER implemented\n", "In country ARM measure Public services closure was implemented on 2020-04-15 00:00:00\n", "In country ARM measure Military deployment was NEVER implemented\n", "In country ARM measure Full lockdown was NEVER implemented\n", "In country ARM measure Visa restrictions was implemented on 2020-03-11 00:00:00\n", "In country ARM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ARM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ARM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ARM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ARM measure Testing policy was NEVER implemented\n", "In country ARM measure Psychological assistance and medical social work was NEVER implemented\n", "In country ARM measure Mass population testing was NEVER implemented\n", "In country ARM measure testing policy was NEVER implemented\n", "In country ARM measure limit public gatherings was NEVER implemented\n", "In country ARM measure strengthening the public health system was NEVER implemented\n", "In country ARM measure Humanitarian exemptions was NEVER implemented\n", "In country ARM measure Complete border closure was NEVER implemented\n", "In country ARM measure curfews was NEVER implemented\n", "In country ARM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country AUS measure Health screenings in airports and border crossings was NEVER implemented\n", "In country AUS measure Introduction of isolation and quarantine policies was implemented on 2020-03-01 00:00:00\n", "In country AUS measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country AUS measure Emergency administrative structures activated or established was implemented on 2020-02-17 00:00:00\n", "In country AUS measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country AUS measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country AUS measure Schools closure was implemented on 2020-03-22 00:00:00\n", "In country AUS measure Strengthening the public health system was implemented on 2020-03-12 00:00:00\n", "In country AUS measure Limit product imports/exports was NEVER implemented\n", "In country AUS measure Border checks was NEVER implemented\n", "In country AUS measure International flights suspension was implemented on 2020-03-25 00:00:00\n", "In country AUS measure Surveillance and monitoring was implemented on 2020-03-28 00:00:00\n", "In country AUS measure Other public health measures enforced was NEVER implemented\n", "In country AUS measure Domestic travel restrictions was implemented on 2020-03-22 00:00:00\n", "In country AUS measure State of emergency declared was implemented on 2020-04-12 00:00:00\n", "In country AUS measure General recommendations was implemented on 2020-03-22 00:00:00\n", "In country AUS measure Partial lockdown was implemented on 2020-03-29 00:00:00\n", "In country AUS measure Checkpoints within the country was NEVER implemented\n", "In country AUS measure Economic measures was implemented on 2020-03-01 00:00:00\n", "In country AUS measure Curfews was NEVER implemented\n", "In country AUS measure Changes in prison-related policies was implemented on 2020-03-20 00:00:00\n", "In country AUS measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country AUS measure Military deployment was implemented on 2020-04-13 00:00:00\n", "In country AUS measure Full lockdown was NEVER implemented\n", "In country AUS measure Visa restrictions was implemented on 2020-03-01 00:00:00\n", "In country AUS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country AUS measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country AUS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country AUS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country AUS measure Testing policy was implemented on 2020-03-25 00:00:00\n", "In country AUS measure Psychological assistance and medical social work was implemented on 2020-03-25 00:00:00\n", "In country AUS measure Mass population testing was NEVER implemented\n", "In country AUS measure testing policy was NEVER implemented\n", "In country AUS measure limit public gatherings was NEVER implemented\n", "In country AUS measure strengthening the public health system was NEVER implemented\n", "In country AUS measure Humanitarian exemptions was NEVER implemented\n", "In country AUS measure Complete border closure was NEVER implemented\n", "In country AUS measure curfews was NEVER implemented\n", "In country AUS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country AUT measure Health screenings in airports and border crossings was NEVER implemented\n", "In country AUT measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country AUT measure Awareness campaigns was implemented on 2020-03-27 00:00:00\n", "In country AUT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country AUT measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country AUT measure Border closure was implemented on 2020-03-11 00:00:00\n", "In country AUT measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country AUT measure Strengthening the public health system was implemented on 2020-03-21 00:00:00\n", "In country AUT measure Limit product imports/exports was NEVER implemented\n", "In country AUT measure Border checks was implemented on 2020-03-11 00:00:00\n", "In country AUT measure International flights suspension was implemented on 2020-03-10 00:00:00\n", "In country AUT measure Surveillance and monitoring was NEVER implemented\n", "In country AUT measure Other public health measures enforced was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country AUT measure Domestic travel restrictions was implemented on 2020-03-22 00:00:00\n", "In country AUT measure State of emergency declared was NEVER implemented\n", "In country AUT measure General recommendations was NEVER implemented\n", "In country AUT measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country AUT measure Checkpoints within the country was NEVER implemented\n", "In country AUT measure Economic measures was implemented on 2020-03-14 00:00:00\n", "In country AUT measure Curfews was implemented on UNKNOWN DATE\n", "In country AUT measure Changes in prison-related policies was NEVER implemented\n", "In country AUT measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country AUT measure Military deployment was implemented on UNKNOWN DATE\n", "In country AUT measure Full lockdown was NEVER implemented\n", "In country AUT measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country AUT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country AUT measure Additional health/documents requirements upon arrival was implemented on UNKNOWN DATE\n", "In country AUT measure Requirement to wear protective gear in public was implemented on 2020-03-31 00:00:00\n", "In country AUT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country AUT measure Testing policy was implemented on 2020-04-07 00:00:00\n", "In country AUT measure Psychological assistance and medical social work was implemented on 2020-03-17 00:00:00\n", "In country AUT measure Mass population testing was NEVER implemented\n", "In country AUT measure testing policy was NEVER implemented\n", "In country AUT measure limit public gatherings was NEVER implemented\n", "In country AUT measure strengthening the public health system was NEVER implemented\n", "In country AUT measure Humanitarian exemptions was NEVER implemented\n", "In country AUT measure Complete border closure was NEVER implemented\n", "In country AUT measure curfews was NEVER implemented\n", "In country AUT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country AZE measure Health screenings in airports and border crossings was implemented on 2020-03-01 00:00:00\n", "In country AZE measure Introduction of isolation and quarantine policies was implemented on 2020-03-01 00:00:00\n", "In country AZE measure Awareness campaigns was implemented on 2020-03-09 00:00:00\n", "In country AZE measure Emergency administrative structures activated or established was NEVER implemented\n", "In country AZE measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country AZE measure Border closure was implemented on 2020-02-29 00:00:00\n", "In country AZE measure Schools closure was implemented on 2020-03-01 00:00:00\n", "In country AZE measure Strengthening the public health system was implemented on 2020-04-08 00:00:00\n", "In country AZE measure Limit product imports/exports was NEVER implemented\n", "In country AZE measure Border checks was NEVER implemented\n", "In country AZE measure International flights suspension was implemented on UNKNOWN DATE\n", "In country AZE measure Surveillance and monitoring was NEVER implemented\n", "In country AZE measure Other public health measures enforced was NEVER implemented\n", "In country AZE measure Domestic travel restrictions was NEVER implemented\n", "In country AZE measure State of emergency declared was NEVER implemented\n", "In country AZE measure General recommendations was NEVER implemented\n", "In country AZE measure Partial lockdown was implemented on 2020-03-14 00:00:00\n", "In country AZE measure Checkpoints within the country was NEVER implemented\n", "In country AZE measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country AZE measure Curfews was NEVER implemented\n", "In country AZE measure Changes in prison-related policies was NEVER implemented\n", "In country AZE measure Public services closure was NEVER implemented\n", "In country AZE measure Military deployment was NEVER implemented\n", "In country AZE measure Full lockdown was implemented on 2020-03-24 00:00:00\n", "In country AZE measure Visa restrictions was implemented on 2020-03-01 00:00:00\n", "In country AZE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country AZE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country AZE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country AZE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country AZE measure Testing policy was NEVER implemented\n", "In country AZE measure Psychological assistance and medical social work was NEVER implemented\n", "In country AZE measure Mass population testing was NEVER implemented\n", "In country AZE measure testing policy was NEVER implemented\n", "In country AZE measure limit public gatherings was NEVER implemented\n", "In country AZE measure strengthening the public health system was NEVER implemented\n", "In country AZE measure Humanitarian exemptions was NEVER implemented\n", "In country AZE measure Complete border closure was NEVER implemented\n", "In country AZE measure curfews was NEVER implemented\n", "In country AZE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BHS measure Health screenings in airports and border crossings was implemented on 2020-03-16 00:00:00\n", "In country BHS measure Introduction of isolation and quarantine policies was implemented on 2020-03-07 00:00:00\n", "In country BHS measure Awareness campaigns was implemented on 2020-03-01 00:00:00\n", "In country BHS measure Emergency administrative structures activated or established was implemented on 2020-03-18 00:00:00\n", "In country BHS measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country BHS measure Border closure was implemented on 2020-03-12 00:00:00\n", "In country BHS measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country BHS measure Strengthening the public health system was implemented on 2020-01-28 00:00:00\n", "In country BHS measure Limit product imports/exports was implemented on 2020-03-24 00:00:00\n", "In country BHS measure Border checks was NEVER implemented\n", "In country BHS measure International flights suspension was implemented on 2020-03-24 00:00:00\n", "In country BHS measure Surveillance and monitoring was NEVER implemented\n", "In country BHS measure Other public health measures enforced was implemented on 2020-03-22 00:00:00\n", "In country BHS measure Domestic travel restrictions was NEVER implemented\n", "In country BHS measure State of emergency declared was NEVER implemented\n", "In country BHS measure General recommendations was implemented on 2020-01-22 00:00:00\n", "In country BHS measure Partial lockdown was NEVER implemented\n", "In country BHS measure Checkpoints within the country was NEVER implemented\n", "In country BHS measure Economic measures was implemented on 2020-03-11 00:00:00\n", "In country BHS measure Curfews was NEVER implemented\n", "In country BHS measure Changes in prison-related policies was NEVER implemented\n", "In country BHS measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country BHS measure Military deployment was NEVER implemented\n", "In country BHS measure Full lockdown was implemented on 2020-03-24 00:00:00\n", "In country BHS measure Visa restrictions was implemented on 2020-03-07 00:00:00\n", "In country BHS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BHS measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BHS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BHS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BHS measure Testing policy was implemented on 2020-03-18 00:00:00\n", "In country BHS measure Psychological assistance and medical social work was NEVER implemented\n", "In country BHS measure Mass population testing was NEVER implemented\n", "In country BHS measure testing policy was NEVER implemented\n", "In country BHS measure limit public gatherings was NEVER implemented\n", "In country BHS measure strengthening the public health system was NEVER implemented\n", "In country BHS measure Humanitarian exemptions was NEVER implemented\n", "In country BHS measure Complete border closure was NEVER implemented\n", "In country BHS measure curfews was NEVER implemented\n", "In country BHS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BHR measure Health screenings in airports and border crossings was implemented on 2020-03-01 00:00:00\n", "In country BHR measure Introduction of isolation and quarantine policies was implemented on 2020-03-01 00:00:00\n", "In country BHR measure Awareness campaigns was NEVER implemented\n", "In country BHR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BHR measure Limit public gatherings was NEVER implemented\n", "In country BHR measure Border closure was implemented on 2020-03-07 00:00:00\n", "In country BHR measure Schools closure was implemented on 2020-02-26 00:00:00\n", "In country BHR measure Strengthening the public health system was implemented on 2020-04-14 00:00:00\n", "In country BHR measure Limit product imports/exports was NEVER implemented\n", "In country BHR measure Border checks was NEVER implemented\n", "In country BHR measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country BHR measure Surveillance and monitoring was NEVER implemented\n", "In country BHR measure Other public health measures enforced was NEVER implemented\n", "In country BHR measure Domestic travel restrictions was NEVER implemented\n", "In country BHR measure State of emergency declared was NEVER implemented\n", "In country BHR measure General recommendations was NEVER implemented\n", "In country BHR measure Partial lockdown was NEVER implemented\n", "In country BHR measure Checkpoints within the country was NEVER implemented\n", "In country BHR measure Economic measures was implemented on 2020-04-12 00:00:00\n", "In country BHR measure Curfews was implemented on 2020-03-26 00:00:00\n", "In country BHR measure Changes in prison-related policies was implemented on 2020-03-12 00:00:00\n", "In country BHR measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country BHR measure Military deployment was NEVER implemented\n", "In country BHR measure Full lockdown was NEVER implemented\n", "In country BHR measure Visa restrictions was implemented on 2020-03-01 00:00:00\n", "In country BHR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BHR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BHR measure Requirement to wear protective gear in public was implemented on 2020-04-09 00:00:00\n", "In country BHR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BHR measure Testing policy was NEVER implemented\n", "In country BHR measure Psychological assistance and medical social work was NEVER implemented\n", "In country BHR measure Mass population testing was NEVER implemented\n", "In country BHR measure testing policy was NEVER implemented\n", "In country BHR measure limit public gatherings was NEVER implemented\n", "In country BHR measure strengthening the public health system was NEVER implemented\n", "In country BHR measure Humanitarian exemptions was NEVER implemented\n", "In country BHR measure Complete border closure was NEVER implemented\n", "In country BHR measure curfews was NEVER implemented\n", "In country BHR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BGD measure Health screenings in airports and border crossings was NEVER implemented\n", "In country BGD measure Introduction of isolation and quarantine policies was implemented on 2020-03-08 00:00:00\n", "In country BGD measure Awareness campaigns was NEVER implemented\n", "In country BGD measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BGD measure Limit public gatherings was NEVER implemented\n", "In country BGD measure Border closure was NEVER implemented\n", "In country BGD measure Schools closure was NEVER implemented\n", "In country BGD measure Strengthening the public health system was NEVER implemented\n", "In country BGD measure Limit product imports/exports was NEVER implemented\n", "In country BGD measure Border checks was NEVER implemented\n", "In country BGD measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country BGD measure Surveillance and monitoring was NEVER implemented\n", "In country BGD measure Other public health measures enforced was NEVER implemented\n", "In country BGD measure Domestic travel restrictions was NEVER implemented\n", "In country BGD measure State of emergency declared was NEVER implemented\n", "In country BGD measure General recommendations was NEVER implemented\n", "In country BGD measure Partial lockdown was NEVER implemented\n", "In country BGD measure Checkpoints within the country was NEVER implemented\n", "In country BGD measure Economic measures was NEVER implemented\n", "In country BGD measure Curfews was NEVER implemented\n", "In country BGD measure Changes in prison-related policies was NEVER implemented\n", "In country BGD measure Public services closure was NEVER implemented\n", "In country BGD measure Military deployment was NEVER implemented\n", "In country BGD measure Full lockdown was NEVER implemented\n", "In country BGD measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country BGD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BGD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BGD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BGD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BGD measure Testing policy was NEVER implemented\n", "In country BGD measure Psychological assistance and medical social work was NEVER implemented\n", "In country BGD measure Mass population testing was NEVER implemented\n", "In country BGD measure testing policy was NEVER implemented\n", "In country BGD measure limit public gatherings was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country BGD measure strengthening the public health system was NEVER implemented\n", "In country BGD measure Humanitarian exemptions was NEVER implemented\n", "In country BGD measure Complete border closure was NEVER implemented\n", "In country BGD measure curfews was NEVER implemented\n", "In country BGD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BRB measure Health screenings in airports and border crossings was implemented on 2020-03-01 00:00:00\n", "In country BRB measure Introduction of isolation and quarantine policies was implemented on 2020-03-08 00:00:00\n", "In country BRB measure Awareness campaigns was implemented on 2020-03-11 00:00:00\n", "In country BRB measure Emergency administrative structures activated or established was implemented on 2020-03-21 00:00:00\n", "In country BRB measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country BRB measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country BRB measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country BRB measure Strengthening the public health system was implemented on 2020-02-05 00:00:00\n", "In country BRB measure Limit product imports/exports was implemented on 2020-03-23 00:00:00\n", "In country BRB measure Border checks was NEVER implemented\n", "In country BRB measure International flights suspension was NEVER implemented\n", "In country BRB measure Surveillance and monitoring was implemented on 2020-02-05 00:00:00\n", "In country BRB measure Other public health measures enforced was implemented on 2020-03-23 00:00:00\n", "In country BRB measure Domestic travel restrictions was NEVER implemented\n", "In country BRB measure State of emergency declared was implemented on 2020-03-27 00:00:00\n", "In country BRB measure General recommendations was implemented on 2020-02-27 00:00:00\n", "In country BRB measure Partial lockdown was implemented on 2020-03-26 00:00:00\n", "In country BRB measure Checkpoints within the country was NEVER implemented\n", "In country BRB measure Economic measures was implemented on 2020-03-11 00:00:00\n", "In country BRB measure Curfews was implemented on 2020-04-03 00:00:00\n", "In country BRB measure Changes in prison-related policies was implemented on 2020-03-19 00:00:00\n", "In country BRB measure Public services closure was implemented on 2020-03-11 00:00:00\n", "In country BRB measure Military deployment was NEVER implemented\n", "In country BRB measure Full lockdown was implemented on 2020-04-03 00:00:00\n", "In country BRB measure Visa restrictions was NEVER implemented\n", "In country BRB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BRB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BRB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BRB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BRB measure Testing policy was implemented on 2020-03-20 00:00:00\n", "In country BRB measure Psychological assistance and medical social work was NEVER implemented\n", "In country BRB measure Mass population testing was NEVER implemented\n", "In country BRB measure testing policy was NEVER implemented\n", "In country BRB measure limit public gatherings was NEVER implemented\n", "In country BRB measure strengthening the public health system was NEVER implemented\n", "In country BRB measure Humanitarian exemptions was NEVER implemented\n", "In country BRB measure Complete border closure was NEVER implemented\n", "In country BRB measure curfews was NEVER implemented\n", "In country BRB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BLR measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country BLR measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country BLR measure Awareness campaigns was NEVER implemented\n", "In country BLR measure Emergency administrative structures activated or established was implemented on 2020-03-12 00:00:00\n", "In country BLR measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country BLR measure Border closure was NEVER implemented\n", "In country BLR measure Schools closure was implemented on UNKNOWN DATE\n", "In country BLR measure Strengthening the public health system was NEVER implemented\n", "In country BLR measure Limit product imports/exports was implemented on 2020-03-19 00:00:00\n", "In country BLR measure Border checks was NEVER implemented\n", "In country BLR measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country BLR measure Surveillance and monitoring was NEVER implemented\n", "In country BLR measure Other public health measures enforced was NEVER implemented\n", "In country BLR measure Domestic travel restrictions was NEVER implemented\n", "In country BLR measure State of emergency declared was NEVER implemented\n", "In country BLR measure General recommendations was implemented on 2020-03-20 00:00:00\n", "In country BLR measure Partial lockdown was NEVER implemented\n", "In country BLR measure Checkpoints within the country was NEVER implemented\n", "In country BLR measure Economic measures was NEVER implemented\n", "In country BLR measure Curfews was NEVER implemented\n", "In country BLR measure Changes in prison-related policies was NEVER implemented\n", "In country BLR measure Public services closure was NEVER implemented\n", "In country BLR measure Military deployment was NEVER implemented\n", "In country BLR measure Full lockdown was NEVER implemented\n", "In country BLR measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country BLR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BLR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BLR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BLR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BLR measure Testing policy was NEVER implemented\n", "In country BLR measure Psychological assistance and medical social work was NEVER implemented\n", "In country BLR measure Mass population testing was implemented on 2020-03-18 00:00:00\n", "In country BLR measure testing policy was NEVER implemented\n", "In country BLR measure limit public gatherings was NEVER implemented\n", "In country BLR measure strengthening the public health system was NEVER implemented\n", "In country BLR measure Humanitarian exemptions was NEVER implemented\n", "In country BLR measure Complete border closure was NEVER implemented\n", "In country BLR measure curfews was NEVER implemented\n", "In country BLR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BEL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country BEL measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country BEL measure Awareness campaigns was implemented on 2020-02-01 00:00:00\n", "In country BEL measure Emergency administrative structures activated or established was implemented on 2020-03-12 00:00:00\n", "In country BEL measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country BEL measure Border closure was NEVER implemented\n", "In country BEL measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country BEL measure Strengthening the public health system was implemented on 2020-03-12 00:00:00\n", "In country BEL measure Limit product imports/exports was NEVER implemented\n", "In country BEL measure Border checks was implemented on 2020-03-20 00:00:00\n", "In country BEL measure International flights suspension was implemented on UNKNOWN DATE\n", "In country BEL measure Surveillance and monitoring was NEVER implemented\n", "In country BEL measure Other public health measures enforced was implemented on UNKNOWN DATE\n", "In country BEL measure Domestic travel restrictions was implemented on 2020-03-18 00:00:00\n", "In country BEL measure State of emergency declared was NEVER implemented\n", "In country BEL measure General recommendations was implemented on 2020-03-18 00:00:00\n", "In country BEL measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country BEL measure Checkpoints within the country was NEVER implemented\n", "In country BEL measure Economic measures was implemented on 2020-03-13 00:00:00\n", "In country BEL measure Curfews was NEVER implemented\n", "In country BEL measure Changes in prison-related policies was implemented on 2020-03-17 00:00:00\n", "In country BEL measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country BEL measure Military deployment was NEVER implemented\n", "In country BEL measure Full lockdown was NEVER implemented\n", "In country BEL measure Visa restrictions was NEVER implemented\n", "In country BEL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BEL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BEL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BEL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BEL measure Testing policy was implemented on 2020-04-10 00:00:00\n", "In country BEL measure Psychological assistance and medical social work was NEVER implemented\n", "In country BEL measure Mass population testing was NEVER implemented\n", "In country BEL measure testing policy was NEVER implemented\n", "In country BEL measure limit public gatherings was NEVER implemented\n", "In country BEL measure strengthening the public health system was NEVER implemented\n", "In country BEL measure Humanitarian exemptions was NEVER implemented\n", "In country BEL measure Complete border closure was NEVER implemented\n", "In country BEL measure curfews was NEVER implemented\n", "In country BEL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BLZ measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country BLZ measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country BLZ measure Awareness campaigns was implemented on 2020-01-23 00:00:00\n", "In country BLZ measure Emergency administrative structures activated or established was implemented on UNKNOWN DATE\n", "In country BLZ measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country BLZ measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country BLZ measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country BLZ measure Strengthening the public health system was implemented on 2020-02-25 00:00:00\n", "In country BLZ measure Limit product imports/exports was NEVER implemented\n", "In country BLZ measure Border checks was NEVER implemented\n", "In country BLZ measure International flights suspension was implemented on 2020-03-23 00:00:00\n", "In country BLZ measure Surveillance and monitoring was NEVER implemented\n", "In country BLZ measure Other public health measures enforced was NEVER implemented\n", "In country BLZ measure Domestic travel restrictions was NEVER implemented\n", "In country BLZ measure State of emergency declared was NEVER implemented\n", "In country BLZ measure General recommendations was implemented on 2020-03-14 00:00:00\n", "In country BLZ measure Partial lockdown was NEVER implemented\n", "In country BLZ measure Checkpoints within the country was NEVER implemented\n", "In country BLZ measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country BLZ measure Curfews was NEVER implemented\n", "In country BLZ measure Changes in prison-related policies was NEVER implemented\n", "In country BLZ measure Public services closure was NEVER implemented\n", "In country BLZ measure Military deployment was NEVER implemented\n", "In country BLZ measure Full lockdown was NEVER implemented\n", "In country BLZ measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country BLZ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BLZ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BLZ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BLZ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BLZ measure Testing policy was NEVER implemented\n", "In country BLZ measure Psychological assistance and medical social work was NEVER implemented\n", "In country BLZ measure Mass population testing was NEVER implemented\n", "In country BLZ measure testing policy was NEVER implemented\n", "In country BLZ measure limit public gatherings was NEVER implemented\n", "In country BLZ measure strengthening the public health system was NEVER implemented\n", "In country BLZ measure Humanitarian exemptions was NEVER implemented\n", "In country BLZ measure Complete border closure was NEVER implemented\n", "In country BLZ measure curfews was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country BLZ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BEN measure Health screenings in airports and border crossings was implemented on 2020-03-03 00:00:00\n", "In country BEN measure Introduction of isolation and quarantine policies was implemented on 2020-03-03 00:00:00\n", "In country BEN measure Awareness campaigns was NEVER implemented\n", "In country BEN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BEN measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country BEN measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country BEN measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country BEN measure Strengthening the public health system was NEVER implemented\n", "In country BEN measure Limit product imports/exports was NEVER implemented\n", "In country BEN measure Border checks was NEVER implemented\n", "In country BEN measure International flights suspension was NEVER implemented\n", "In country BEN measure Surveillance and monitoring was NEVER implemented\n", "In country BEN measure Other public health measures enforced was NEVER implemented\n", "In country BEN measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country BEN measure State of emergency declared was NEVER implemented\n", "In country BEN measure General recommendations was implemented on 2020-04-05 00:00:00\n", "In country BEN measure Partial lockdown was implemented on 2020-03-23 00:00:00\n", "In country BEN measure Checkpoints within the country was NEVER implemented\n", "In country BEN measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country BEN measure Curfews was NEVER implemented\n", "In country BEN measure Changes in prison-related policies was NEVER implemented\n", "In country BEN measure Public services closure was NEVER implemented\n", "In country BEN measure Military deployment was implemented on 2020-03-30 00:00:00\n", "In country BEN measure Full lockdown was NEVER implemented\n", "In country BEN measure Visa restrictions was implemented on 2020-03-19 00:00:00\n", "In country BEN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BEN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BEN measure Requirement to wear protective gear in public was implemented on 2020-04-08 00:00:00\n", "In country BEN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BEN measure Testing policy was NEVER implemented\n", "In country BEN measure Psychological assistance and medical social work was NEVER implemented\n", "In country BEN measure Mass population testing was NEVER implemented\n", "In country BEN measure testing policy was NEVER implemented\n", "In country BEN measure limit public gatherings was NEVER implemented\n", "In country BEN measure strengthening the public health system was NEVER implemented\n", "In country BEN measure Humanitarian exemptions was NEVER implemented\n", "In country BEN measure Complete border closure was NEVER implemented\n", "In country BEN measure curfews was NEVER implemented\n", "In country BEN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BTN measure Health screenings in airports and border crossings was NEVER implemented\n", "In country BTN measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country BTN measure Awareness campaigns was NEVER implemented\n", "In country BTN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BTN measure Limit public gatherings was NEVER implemented\n", "In country BTN measure Border closure was implemented on 2020-03-06 00:00:00\n", "In country BTN measure Schools closure was NEVER implemented\n", "In country BTN measure Strengthening the public health system was NEVER implemented\n", "In country BTN measure Limit product imports/exports was NEVER implemented\n", "In country BTN measure Border checks was NEVER implemented\n", "In country BTN measure International flights suspension was NEVER implemented\n", "In country BTN measure Surveillance and monitoring was NEVER implemented\n", "In country BTN measure Other public health measures enforced was NEVER implemented\n", "In country BTN measure Domestic travel restrictions was implemented on 2020-01-31 00:00:00\n", "In country BTN measure State of emergency declared was NEVER implemented\n", "In country BTN measure General recommendations was NEVER implemented\n", "In country BTN measure Partial lockdown was NEVER implemented\n", "In country BTN measure Checkpoints within the country was NEVER implemented\n", "In country BTN measure Economic measures was NEVER implemented\n", "In country BTN measure Curfews was NEVER implemented\n", "In country BTN measure Changes in prison-related policies was NEVER implemented\n", "In country BTN measure Public services closure was NEVER implemented\n", "In country BTN measure Military deployment was NEVER implemented\n", "In country BTN measure Full lockdown was NEVER implemented\n", "In country BTN measure Visa restrictions was NEVER implemented\n", "In country BTN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BTN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BTN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BTN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BTN measure Testing policy was NEVER implemented\n", "In country BTN measure Psychological assistance and medical social work was NEVER implemented\n", "In country BTN measure Mass population testing was NEVER implemented\n", "In country BTN measure testing policy was NEVER implemented\n", "In country BTN measure limit public gatherings was NEVER implemented\n", "In country BTN measure strengthening the public health system was NEVER implemented\n", "In country BTN measure Humanitarian exemptions was NEVER implemented\n", "In country BTN measure Complete border closure was NEVER implemented\n", "In country BTN measure curfews was NEVER implemented\n", "In country BTN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BOL measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country BOL measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country BOL measure Awareness campaigns was NEVER implemented\n", "In country BOL measure Emergency administrative structures activated or established was implemented on 2020-03-27 00:00:00\n", "In country BOL measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country BOL measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country BOL measure Schools closure was NEVER implemented\n", "In country BOL measure Strengthening the public health system was NEVER implemented\n", "In country BOL measure Limit product imports/exports was NEVER implemented\n", "In country BOL measure Border checks was NEVER implemented\n", "In country BOL measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country BOL measure Surveillance and monitoring was implemented on 2020-04-09 00:00:00\n", "In country BOL measure Other public health measures enforced was NEVER implemented\n", "In country BOL measure Domestic travel restrictions was implemented on 2020-03-21 00:00:00\n", "In country BOL measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country BOL measure General recommendations was NEVER implemented\n", "In country BOL measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country BOL measure Checkpoints within the country was NEVER implemented\n", "In country BOL measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country BOL measure Curfews was implemented on 2020-03-17 00:00:00\n", "In country BOL measure Changes in prison-related policies was NEVER implemented\n", "In country BOL measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country BOL measure Military deployment was implemented on 2020-03-26 00:00:00\n", "In country BOL measure Full lockdown was NEVER implemented\n", "In country BOL measure Visa restrictions was NEVER implemented\n", "In country BOL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BOL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BOL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BOL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BOL measure Testing policy was NEVER implemented\n", "In country BOL measure Psychological assistance and medical social work was NEVER implemented\n", "In country BOL measure Mass population testing was NEVER implemented\n", "In country BOL measure testing policy was NEVER implemented\n", "In country BOL measure limit public gatherings was NEVER implemented\n", "In country BOL measure strengthening the public health system was NEVER implemented\n", "In country BOL measure Humanitarian exemptions was NEVER implemented\n", "In country BOL measure Complete border closure was NEVER implemented\n", "In country BOL measure curfews was NEVER implemented\n", "In country BOL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BIH measure Health screenings in airports and border crossings was implemented on 2020-03-18 00:00:00\n", "In country BIH measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Awareness campaigns was implemented on 2020-03-27 00:00:00\n", "In country BIH measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BIH measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country BIH measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country BIH measure Limit product imports/exports was NEVER implemented\n", "In country BIH measure Border checks was implemented on 2020-02-24 00:00:00\n", "In country BIH measure International flights suspension was implemented on 2020-03-24 00:00:00\n", "In country BIH measure Surveillance and monitoring was NEVER implemented\n", "In country BIH measure Other public health measures enforced was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Domestic travel restrictions was implemented on 2020-04-09 00:00:00\n", "In country BIH measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country BIH measure General recommendations was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Partial lockdown was NEVER implemented\n", "In country BIH measure Checkpoints within the country was NEVER implemented\n", "In country BIH measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country BIH measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country BIH measure Changes in prison-related policies was NEVER implemented\n", "In country BIH measure Public services closure was implemented on 2020-03-11 00:00:00\n", "In country BIH measure Military deployment was NEVER implemented\n", "In country BIH measure Full lockdown was NEVER implemented\n", "In country BIH measure Visa restrictions was implemented on 2020-03-12 00:00:00\n", "In country BIH measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-04-03 00:00:00\n", "In country BIH measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BIH measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BIH measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BIH measure Testing policy was implemented on 2020-03-31 00:00:00\n", "In country BIH measure Psychological assistance and medical social work was implemented on 2020-04-15 00:00:00\n", "In country BIH measure Mass population testing was NEVER implemented\n", "In country BIH measure testing policy was NEVER implemented\n", "In country BIH measure limit public gatherings was NEVER implemented\n", "In country BIH measure strengthening the public health system was NEVER implemented\n", "In country BIH measure Humanitarian exemptions was NEVER implemented\n", "In country BIH measure Complete border closure was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country BIH measure curfews was NEVER implemented\n", "In country BIH measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BWA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country BWA measure Introduction of isolation and quarantine policies was implemented on 2020-03-24 00:00:00\n", "In country BWA measure Awareness campaigns was NEVER implemented\n", "In country BWA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BWA measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country BWA measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country BWA measure Schools closure was NEVER implemented\n", "In country BWA measure Strengthening the public health system was NEVER implemented\n", "In country BWA measure Limit product imports/exports was NEVER implemented\n", "In country BWA measure Border checks was NEVER implemented\n", "In country BWA measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country BWA measure Surveillance and monitoring was NEVER implemented\n", "In country BWA measure Other public health measures enforced was NEVER implemented\n", "In country BWA measure Domestic travel restrictions was NEVER implemented\n", "In country BWA measure State of emergency declared was implemented on 2020-04-03 00:00:00\n", "In country BWA measure General recommendations was implemented on 2020-03-19 00:00:00\n", "In country BWA measure Partial lockdown was implemented on 2020-04-03 00:00:00\n", "In country BWA measure Checkpoints within the country was NEVER implemented\n", "In country BWA measure Economic measures was implemented on 2020-04-03 00:00:00\n", "In country BWA measure Curfews was NEVER implemented\n", "In country BWA measure Changes in prison-related policies was NEVER implemented\n", "In country BWA measure Public services closure was NEVER implemented\n", "In country BWA measure Military deployment was NEVER implemented\n", "In country BWA measure Full lockdown was NEVER implemented\n", "In country BWA measure Visa restrictions was implemented on 2020-03-21 00:00:00\n", "In country BWA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BWA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BWA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BWA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BWA measure Testing policy was implemented on 2020-03-18 00:00:00\n", "In country BWA measure Psychological assistance and medical social work was NEVER implemented\n", "In country BWA measure Mass population testing was NEVER implemented\n", "In country BWA measure testing policy was NEVER implemented\n", "In country BWA measure limit public gatherings was NEVER implemented\n", "In country BWA measure strengthening the public health system was NEVER implemented\n", "In country BWA measure Humanitarian exemptions was NEVER implemented\n", "In country BWA measure Complete border closure was NEVER implemented\n", "In country BWA measure curfews was NEVER implemented\n", "In country BWA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BRA measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country BRA measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country BRA measure Awareness campaigns was implemented on 2020-03-18 00:00:00\n", "In country BRA measure Emergency administrative structures activated or established was implemented on 2020-03-20 00:00:00\n", "In country BRA measure Limit public gatherings was implemented on 2020-04-08 00:00:00\n", "In country BRA measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country BRA measure Schools closure was implemented on 2020-04-08 00:00:00\n", "In country BRA measure Strengthening the public health system was NEVER implemented\n", "In country BRA measure Limit product imports/exports was NEVER implemented\n", "In country BRA measure Border checks was NEVER implemented\n", "In country BRA measure International flights suspension was implemented on 2020-04-08 00:00:00\n", "In country BRA measure Surveillance and monitoring was NEVER implemented\n", "In country BRA measure Other public health measures enforced was NEVER implemented\n", "In country BRA measure Domestic travel restrictions was implemented on 2020-04-08 00:00:00\n", "In country BRA measure State of emergency declared was NEVER implemented\n", "In country BRA measure General recommendations was NEVER implemented\n", "In country BRA measure Partial lockdown was implemented on 2020-04-08 00:00:00\n", "In country BRA measure Checkpoints within the country was NEVER implemented\n", "In country BRA measure Economic measures was implemented on 2020-04-03 00:00:00\n", "In country BRA measure Curfews was NEVER implemented\n", "In country BRA measure Changes in prison-related policies was implemented on 2020-03-16 00:00:00\n", "In country BRA measure Public services closure was implemented on 2020-04-08 00:00:00\n", "In country BRA measure Military deployment was NEVER implemented\n", "In country BRA measure Full lockdown was NEVER implemented\n", "In country BRA measure Visa restrictions was implemented on 2020-03-23 00:00:00\n", "In country BRA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BRA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BRA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BRA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BRA measure Testing policy was NEVER implemented\n", "In country BRA measure Psychological assistance and medical social work was NEVER implemented\n", "In country BRA measure Mass population testing was NEVER implemented\n", "In country BRA measure testing policy was NEVER implemented\n", "In country BRA measure limit public gatherings was NEVER implemented\n", "In country BRA measure strengthening the public health system was NEVER implemented\n", "In country BRA measure Humanitarian exemptions was NEVER implemented\n", "In country BRA measure Complete border closure was NEVER implemented\n", "In country BRA measure curfews was NEVER implemented\n", "In country BRA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BRN measure Health screenings in airports and border crossings was implemented on 2020-03-20 00:00:00\n", "In country BRN measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country BRN measure Awareness campaigns was implemented on 2020-03-18 00:00:00\n", "In country BRN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BRN measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country BRN measure Border closure was NEVER implemented\n", "In country BRN measure Schools closure was implemented on 2020-03-10 00:00:00\n", "In country BRN measure Strengthening the public health system was implemented on UNKNOWN DATE\n", "In country BRN measure Limit product imports/exports was NEVER implemented\n", "In country BRN measure Border checks was NEVER implemented\n", "In country BRN measure International flights suspension was NEVER implemented\n", "In country BRN measure Surveillance and monitoring was NEVER implemented\n", "In country BRN measure Other public health measures enforced was NEVER implemented\n", "In country BRN measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country BRN measure State of emergency declared was NEVER implemented\n", "In country BRN measure General recommendations was implemented on 2020-03-09 00:00:00\n", "In country BRN measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country BRN measure Checkpoints within the country was NEVER implemented\n", "In country BRN measure Economic measures was NEVER implemented\n", "In country BRN measure Curfews was NEVER implemented\n", "In country BRN measure Changes in prison-related policies was NEVER implemented\n", "In country BRN measure Public services closure was implemented on 2020-03-21 00:00:00\n", "In country BRN measure Military deployment was NEVER implemented\n", "In country BRN measure Full lockdown was NEVER implemented\n", "In country BRN measure Visa restrictions was implemented on 2020-03-17 00:00:00\n", "In country BRN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BRN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BRN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BRN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BRN measure Testing policy was NEVER implemented\n", "In country BRN measure Psychological assistance and medical social work was NEVER implemented\n", "In country BRN measure Mass population testing was NEVER implemented\n", "In country BRN measure testing policy was NEVER implemented\n", "In country BRN measure limit public gatherings was NEVER implemented\n", "In country BRN measure strengthening the public health system was NEVER implemented\n", "In country BRN measure Humanitarian exemptions was NEVER implemented\n", "In country BRN measure Complete border closure was NEVER implemented\n", "In country BRN measure curfews was NEVER implemented\n", "In country BRN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BGR measure Health screenings in airports and border crossings was implemented on 2020-03-18 00:00:00\n", "In country BGR measure Introduction of isolation and quarantine policies was implemented on 2020-01-03 00:00:00\n", "In country BGR measure Awareness campaigns was NEVER implemented\n", "In country BGR measure Emergency administrative structures activated or established was implemented on 2020-03-13 00:00:00\n", "In country BGR measure Limit public gatherings was implemented on UNKNOWN DATE\n", "In country BGR measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country BGR measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country BGR measure Strengthening the public health system was implemented on 2020-01-31 00:00:00\n", "In country BGR measure Limit product imports/exports was NEVER implemented\n", "In country BGR measure Border checks was NEVER implemented\n", "In country BGR measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country BGR measure Surveillance and monitoring was NEVER implemented\n", "In country BGR measure Other public health measures enforced was NEVER implemented\n", "In country BGR measure Domestic travel restrictions was NEVER implemented\n", "In country BGR measure State of emergency declared was implemented on 2020-03-13 00:00:00\n", "In country BGR measure General recommendations was NEVER implemented\n", "In country BGR measure Partial lockdown was implemented on 2020-03-13 00:00:00\n", "In country BGR measure Checkpoints within the country was NEVER implemented\n", "In country BGR measure Economic measures was NEVER implemented\n", "In country BGR measure Curfews was NEVER implemented\n", "In country BGR measure Changes in prison-related policies was NEVER implemented\n", "In country BGR measure Public services closure was implemented on 2020-03-13 00:00:00\n", "In country BGR measure Military deployment was NEVER implemented\n", "In country BGR measure Full lockdown was NEVER implemented\n", "In country BGR measure Visa restrictions was NEVER implemented\n", "In country BGR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BGR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BGR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BGR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BGR measure Testing policy was NEVER implemented\n", "In country BGR measure Psychological assistance and medical social work was NEVER implemented\n", "In country BGR measure Mass population testing was NEVER implemented\n", "In country BGR measure testing policy was NEVER implemented\n", "In country BGR measure limit public gatherings was NEVER implemented\n", "In country BGR measure strengthening the public health system was NEVER implemented\n", "In country BGR measure Humanitarian exemptions was NEVER implemented\n", "In country BGR measure Complete border closure was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country BGR measure curfews was NEVER implemented\n", "In country BGR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BFA measure Health screenings in airports and border crossings was implemented on 2020-03-12 00:00:00\n", "In country BFA measure Introduction of isolation and quarantine policies was implemented on 2020-03-27 00:00:00\n", "In country BFA measure Awareness campaigns was implemented on 2020-02-13 00:00:00\n", "In country BFA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BFA measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country BFA measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country BFA measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country BFA measure Strengthening the public health system was NEVER implemented\n", "In country BFA measure Limit product imports/exports was NEVER implemented\n", "In country BFA measure Border checks was implemented on 2020-03-12 00:00:00\n", "In country BFA measure International flights suspension was implemented on 2020-03-21 00:00:00\n", "In country BFA measure Surveillance and monitoring was NEVER implemented\n", "In country BFA measure Other public health measures enforced was NEVER implemented\n", "In country BFA measure Domestic travel restrictions was NEVER implemented\n", "In country BFA measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country BFA measure General recommendations was NEVER implemented\n", "In country BFA measure Partial lockdown was NEVER implemented\n", "In country BFA measure Checkpoints within the country was NEVER implemented\n", "In country BFA measure Economic measures was implemented on 2020-04-06 00:00:00\n", "In country BFA measure Curfews was implemented on 2020-03-21 00:00:00\n", "In country BFA measure Changes in prison-related policies was NEVER implemented\n", "In country BFA measure Public services closure was NEVER implemented\n", "In country BFA measure Military deployment was NEVER implemented\n", "In country BFA measure Full lockdown was NEVER implemented\n", "In country BFA measure Visa restrictions was NEVER implemented\n", "In country BFA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BFA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BFA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BFA measure Amendments to funeral and burial regulations was implemented on 2020-03-21 00:00:00\n", "In country BFA measure Testing policy was NEVER implemented\n", "In country BFA measure Psychological assistance and medical social work was NEVER implemented\n", "In country BFA measure Mass population testing was NEVER implemented\n", "In country BFA measure testing policy was NEVER implemented\n", "In country BFA measure limit public gatherings was NEVER implemented\n", "In country BFA measure strengthening the public health system was NEVER implemented\n", "In country BFA measure Humanitarian exemptions was NEVER implemented\n", "In country BFA measure Complete border closure was NEVER implemented\n", "In country BFA measure curfews was NEVER implemented\n", "In country BFA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country BDI measure Health screenings in airports and border crossings was implemented on 2020-03-15 00:00:00\n", "In country BDI measure Introduction of isolation and quarantine policies was implemented on 2020-03-06 00:00:00\n", "In country BDI measure Awareness campaigns was NEVER implemented\n", "In country BDI measure Emergency administrative structures activated or established was NEVER implemented\n", "In country BDI measure Limit public gatherings was NEVER implemented\n", "In country BDI measure Border closure was NEVER implemented\n", "In country BDI measure Schools closure was NEVER implemented\n", "In country BDI measure Strengthening the public health system was NEVER implemented\n", "In country BDI measure Limit product imports/exports was NEVER implemented\n", "In country BDI measure Border checks was implemented on 2020-03-28 00:00:00\n", "In country BDI measure International flights suspension was implemented on 2020-03-22 00:00:00\n", "In country BDI measure Surveillance and monitoring was NEVER implemented\n", "In country BDI measure Other public health measures enforced was NEVER implemented\n", "In country BDI measure Domestic travel restrictions was NEVER implemented\n", "In country BDI measure State of emergency declared was NEVER implemented\n", "In country BDI measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country BDI measure Partial lockdown was NEVER implemented\n", "In country BDI measure Checkpoints within the country was NEVER implemented\n", "In country BDI measure Economic measures was NEVER implemented\n", "In country BDI measure Curfews was NEVER implemented\n", "In country BDI measure Changes in prison-related policies was NEVER implemented\n", "In country BDI measure Public services closure was NEVER implemented\n", "In country BDI measure Military deployment was NEVER implemented\n", "In country BDI measure Full lockdown was NEVER implemented\n", "In country BDI measure Visa restrictions was implemented on 2020-03-22 00:00:00\n", "In country BDI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country BDI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country BDI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country BDI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country BDI measure Testing policy was NEVER implemented\n", "In country BDI measure Psychological assistance and medical social work was NEVER implemented\n", "In country BDI measure Mass population testing was NEVER implemented\n", "In country BDI measure testing policy was NEVER implemented\n", "In country BDI measure limit public gatherings was NEVER implemented\n", "In country BDI measure strengthening the public health system was NEVER implemented\n", "In country BDI measure Humanitarian exemptions was NEVER implemented\n", "In country BDI measure Complete border closure was NEVER implemented\n", "In country BDI measure curfews was NEVER implemented\n", "In country BDI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CPV measure Health screenings in airports and border crossings was NEVER implemented\n", "In country CPV measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country CPV measure Awareness campaigns was implemented on 2020-03-27 00:00:00\n", "In country CPV measure Emergency administrative structures activated or established was implemented on 2020-04-03 00:00:00\n", "In country CPV measure Limit public gatherings was NEVER implemented\n", "In country CPV measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country CPV measure Schools closure was implemented on 2020-03-27 00:00:00\n", "In country CPV measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country CPV measure Limit product imports/exports was NEVER implemented\n", "In country CPV measure Border checks was NEVER implemented\n", "In country CPV measure International flights suspension was implemented on 2020-03-02 00:00:00\n", "In country CPV measure Surveillance and monitoring was implemented on 2020-03-27 00:00:00\n", "In country CPV measure Other public health measures enforced was NEVER implemented\n", "In country CPV measure Domestic travel restrictions was NEVER implemented\n", "In country CPV measure State of emergency declared was implemented on 2020-03-27 00:00:00\n", "In country CPV measure General recommendations was NEVER implemented\n", "In country CPV measure Partial lockdown was NEVER implemented\n", "In country CPV measure Checkpoints within the country was NEVER implemented\n", "In country CPV measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country CPV measure Curfews was implemented on 2020-03-29 00:00:00\n", "In country CPV measure Changes in prison-related policies was NEVER implemented\n", "In country CPV measure Public services closure was implemented on 2020-03-27 00:00:00\n", "In country CPV measure Military deployment was NEVER implemented\n", "In country CPV measure Full lockdown was NEVER implemented\n", "In country CPV measure Visa restrictions was NEVER implemented\n", "In country CPV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CPV measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CPV measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CPV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CPV measure Testing policy was NEVER implemented\n", "In country CPV measure Psychological assistance and medical social work was NEVER implemented\n", "In country CPV measure Mass population testing was NEVER implemented\n", "In country CPV measure testing policy was NEVER implemented\n", "In country CPV measure limit public gatherings was NEVER implemented\n", "In country CPV measure strengthening the public health system was NEVER implemented\n", "In country CPV measure Humanitarian exemptions was NEVER implemented\n", "In country CPV measure Complete border closure was NEVER implemented\n", "In country CPV measure curfews was NEVER implemented\n", "In country CPV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KHM measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country KHM measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country KHM measure Awareness campaigns was NEVER implemented\n", "In country KHM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KHM measure Limit public gatherings was NEVER implemented\n", "In country KHM measure Border closure was NEVER implemented\n", "In country KHM measure Schools closure was implemented on UNKNOWN DATE\n", "In country KHM measure Strengthening the public health system was NEVER implemented\n", "In country KHM measure Limit product imports/exports was NEVER implemented\n", "In country KHM measure Border checks was NEVER implemented\n", "In country KHM measure International flights suspension was NEVER implemented\n", "In country KHM measure Surveillance and monitoring was NEVER implemented\n", "In country KHM measure Other public health measures enforced was NEVER implemented\n", "In country KHM measure Domestic travel restrictions was NEVER implemented\n", "In country KHM measure State of emergency declared was NEVER implemented\n", "In country KHM measure General recommendations was NEVER implemented\n", "In country KHM measure Partial lockdown was NEVER implemented\n", "In country KHM measure Checkpoints within the country was NEVER implemented\n", "In country KHM measure Economic measures was NEVER implemented\n", "In country KHM measure Curfews was NEVER implemented\n", "In country KHM measure Changes in prison-related policies was NEVER implemented\n", "In country KHM measure Public services closure was NEVER implemented\n", "In country KHM measure Military deployment was NEVER implemented\n", "In country KHM measure Full lockdown was NEVER implemented\n", "In country KHM measure Visa restrictions was implemented on 2020-03-17 00:00:00\n", "In country KHM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KHM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country KHM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KHM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KHM measure Testing policy was NEVER implemented\n", "In country KHM measure Psychological assistance and medical social work was NEVER implemented\n", "In country KHM measure Mass population testing was NEVER implemented\n", "In country KHM measure testing policy was NEVER implemented\n", "In country KHM measure limit public gatherings was NEVER implemented\n", "In country KHM measure strengthening the public health system was NEVER implemented\n", "In country KHM measure Humanitarian exemptions was NEVER implemented\n", "In country KHM measure Complete border closure was NEVER implemented\n", "In country KHM measure curfews was NEVER implemented\n", "In country KHM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CMR measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country CMR measure Introduction of isolation and quarantine policies was implemented on 2020-03-07 00:00:00\n", "In country CMR measure Awareness campaigns was implemented on 2020-03-07 00:00:00\n", "In country CMR measure Emergency administrative structures activated or established was implemented on 2020-03-07 00:00:00\n", "In country CMR measure Limit public gatherings was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Strengthening the public health system was implemented on 2020-03-23 00:00:00\n", "In country CMR measure Limit product imports/exports was NEVER implemented\n", "In country CMR measure Border checks was NEVER implemented\n", "In country CMR measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Surveillance and monitoring was NEVER implemented\n", "In country CMR measure Other public health measures enforced was NEVER implemented\n", "In country CMR measure Domestic travel restrictions was implemented on 2020-03-18 00:00:00\n", "In country CMR measure State of emergency declared was NEVER implemented\n", "In country CMR measure General recommendations was implemented on 2020-04-02 00:00:00\n", "In country CMR measure Partial lockdown was NEVER implemented\n", "In country CMR measure Checkpoints within the country was NEVER implemented\n", "In country CMR measure Economic measures was implemented on 2020-03-30 00:00:00\n", "In country CMR measure Curfews was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Changes in prison-related policies was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country CMR measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Military deployment was NEVER implemented\n", "In country CMR measure Full lockdown was NEVER implemented\n", "In country CMR measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country CMR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CMR measure Additional health/documents requirements upon arrival was implemented on 2020-03-07 00:00:00\n", "In country CMR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CMR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CMR measure Testing policy was implemented on 2020-03-25 00:00:00\n", "In country CMR measure Psychological assistance and medical social work was NEVER implemented\n", "In country CMR measure Mass population testing was implemented on 2020-04-02 00:00:00\n", "In country CMR measure testing policy was NEVER implemented\n", "In country CMR measure limit public gatherings was NEVER implemented\n", "In country CMR measure strengthening the public health system was NEVER implemented\n", "In country CMR measure Humanitarian exemptions was NEVER implemented\n", "In country CMR measure Complete border closure was NEVER implemented\n", "In country CMR measure curfews was NEVER implemented\n", "In country CMR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CAN measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country CAN measure Introduction of isolation and quarantine policies was implemented on 2020-02-15 00:00:00\n", "In country CAN measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country CAN measure Emergency administrative structures activated or established was implemented on 2020-02-02 00:00:00\n", "In country CAN measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country CAN measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country CAN measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country CAN measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country CAN measure Limit product imports/exports was NEVER implemented\n", "In country CAN measure Border checks was NEVER implemented\n", "In country CAN measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country CAN measure Surveillance and monitoring was NEVER implemented\n", "In country CAN measure Other public health measures enforced was NEVER implemented\n", "In country CAN measure Domestic travel restrictions was NEVER implemented\n", "In country CAN measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country CAN measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country CAN measure Partial lockdown was NEVER implemented\n", "In country CAN measure Checkpoints within the country was NEVER implemented\n", "In country CAN measure Economic measures was implemented on 2020-03-18 00:00:00\n", "In country CAN measure Curfews was NEVER implemented\n", "In country CAN measure Changes in prison-related policies was NEVER implemented\n", "In country CAN measure Public services closure was NEVER implemented\n", "In country CAN measure Military deployment was NEVER implemented\n", "In country CAN measure Full lockdown was NEVER implemented\n", "In country CAN measure Visa restrictions was implemented on 2020-02-29 00:00:00\n", "In country CAN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CAN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CAN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CAN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CAN measure Testing policy was NEVER implemented\n", "In country CAN measure Psychological assistance and medical social work was NEVER implemented\n", "In country CAN measure Mass population testing was NEVER implemented\n", "In country CAN measure testing policy was NEVER implemented\n", "In country CAN measure limit public gatherings was NEVER implemented\n", "In country CAN measure strengthening the public health system was NEVER implemented\n", "In country CAN measure Humanitarian exemptions was NEVER implemented\n", "In country CAN measure Complete border closure was NEVER implemented\n", "In country CAN measure curfews was NEVER implemented\n", "In country CAN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CAF measure Health screenings in airports and border crossings was implemented on 2020-03-06 00:00:00\n", "In country CAF measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country CAF measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country CAF measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CAF measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country CAF measure Border closure was implemented on 2020-03-27 00:00:00\n", "In country CAF measure Schools closure was implemented on 2020-03-27 00:00:00\n", "In country CAF measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country CAF measure Limit product imports/exports was NEVER implemented\n", "In country CAF measure Border checks was NEVER implemented\n", "In country CAF measure International flights suspension was implemented on 2020-03-27 00:00:00\n", "In country CAF measure Surveillance and monitoring was NEVER implemented\n", "In country CAF measure Other public health measures enforced was implemented on 2020-03-19 00:00:00\n", "In country CAF measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country CAF measure State of emergency declared was NEVER implemented\n", "In country CAF measure General recommendations was NEVER implemented\n", "In country CAF measure Partial lockdown was NEVER implemented\n", "In country CAF measure Checkpoints within the country was NEVER implemented\n", "In country CAF measure Economic measures was NEVER implemented\n", "In country CAF measure Curfews was NEVER implemented\n", "In country CAF measure Changes in prison-related policies was NEVER implemented\n", "In country CAF measure Public services closure was implemented on 2020-03-13 00:00:00\n", "In country CAF measure Military deployment was NEVER implemented\n", "In country CAF measure Full lockdown was NEVER implemented\n", "In country CAF measure Visa restrictions was implemented on 2020-04-08 00:00:00\n", "In country CAF measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CAF measure Additional health/documents requirements upon arrival was implemented on 2020-01-29 00:00:00\n", "In country CAF measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CAF measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CAF measure Testing policy was NEVER implemented\n", "In country CAF measure Psychological assistance and medical social work was NEVER implemented\n", "In country CAF measure Mass population testing was NEVER implemented\n", "In country CAF measure testing policy was NEVER implemented\n", "In country CAF measure limit public gatherings was NEVER implemented\n", "In country CAF measure strengthening the public health system was NEVER implemented\n", "In country CAF measure Humanitarian exemptions was NEVER implemented\n", "In country CAF measure Complete border closure was NEVER implemented\n", "In country CAF measure curfews was NEVER implemented\n", "In country CAF measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TCD measure Health screenings in airports and border crossings was implemented on 2020-03-08 00:00:00\n", "In country TCD measure Introduction of isolation and quarantine policies was implemented on 2020-03-08 00:00:00\n", "In country TCD measure Awareness campaigns was NEVER implemented\n", "In country TCD measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TCD measure Limit public gatherings was implemented on 2020-03-23 00:00:00\n", "In country TCD measure Border closure was NEVER implemented\n", "In country TCD measure Schools closure was NEVER implemented\n", "In country TCD measure Strengthening the public health system was NEVER implemented\n", "In country TCD measure Limit product imports/exports was NEVER implemented\n", "In country TCD measure Border checks was NEVER implemented\n", "In country TCD measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country TCD measure Surveillance and monitoring was NEVER implemented\n", "In country TCD measure Other public health measures enforced was NEVER implemented\n", "In country TCD measure Domestic travel restrictions was implemented on 2020-03-21 00:00:00\n", "In country TCD measure State of emergency declared was NEVER implemented\n", "In country TCD measure General recommendations was NEVER implemented\n", "In country TCD measure Partial lockdown was NEVER implemented\n", "In country TCD measure Checkpoints within the country was implemented on 2020-03-19 00:00:00\n", "In country TCD measure Economic measures was NEVER implemented\n", "In country TCD measure Curfews was implemented on 2020-04-02 00:00:00\n", "In country TCD measure Changes in prison-related policies was NEVER implemented\n", "In country TCD measure Public services closure was NEVER implemented\n", "In country TCD measure Military deployment was NEVER implemented\n", "In country TCD measure Full lockdown was NEVER implemented\n", "In country TCD measure Visa restrictions was NEVER implemented\n", "In country TCD measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-03-19 00:00:00\n", "In country TCD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TCD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TCD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TCD measure Testing policy was NEVER implemented\n", "In country TCD measure Psychological assistance and medical social work was NEVER implemented\n", "In country TCD measure Mass population testing was NEVER implemented\n", "In country TCD measure testing policy was NEVER implemented\n", "In country TCD measure limit public gatherings was NEVER implemented\n", "In country TCD measure strengthening the public health system was NEVER implemented\n", "In country TCD measure Humanitarian exemptions was NEVER implemented\n", "In country TCD measure Complete border closure was NEVER implemented\n", "In country TCD measure curfews was NEVER implemented\n", "In country TCD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CHL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country CHL measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country CHL measure Awareness campaigns was NEVER implemented\n", "In country CHL measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CHL measure Limit public gatherings was implemented on 2020-03-21 00:00:00\n", "In country CHL measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country CHL measure Schools closure was implemented on 2020-03-21 00:00:00\n", "In country CHL measure Strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country CHL measure Limit product imports/exports was NEVER implemented\n", "In country CHL measure Border checks was NEVER implemented\n", "In country CHL measure International flights suspension was NEVER implemented\n", "In country CHL measure Surveillance and monitoring was NEVER implemented\n", "In country CHL measure Other public health measures enforced was NEVER implemented\n", "In country CHL measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country CHL measure State of emergency declared was implemented on 2020-03-19 00:00:00\n", "In country CHL measure General recommendations was implemented on 2020-04-08 00:00:00\n", "In country CHL measure Partial lockdown was implemented on 2020-03-26 00:00:00\n", "In country CHL measure Checkpoints within the country was implemented on 2020-03-30 00:00:00\n", "In country CHL measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country CHL measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country CHL measure Changes in prison-related policies was implemented on 2020-03-15 00:00:00\n", "In country CHL measure Public services closure was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country CHL measure Military deployment was implemented on 2020-03-19 00:00:00\n", "In country CHL measure Full lockdown was NEVER implemented\n", "In country CHL measure Visa restrictions was NEVER implemented\n", "In country CHL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CHL measure Additional health/documents requirements upon arrival was implemented on 2020-03-10 00:00:00\n", "In country CHL measure Requirement to wear protective gear in public was implemented on 2020-04-08 00:00:00\n", "In country CHL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CHL measure Testing policy was NEVER implemented\n", "In country CHL measure Psychological assistance and medical social work was NEVER implemented\n", "In country CHL measure Mass population testing was NEVER implemented\n", "In country CHL measure testing policy was NEVER implemented\n", "In country CHL measure limit public gatherings was NEVER implemented\n", "In country CHL measure strengthening the public health system was NEVER implemented\n", "In country CHL measure Humanitarian exemptions was NEVER implemented\n", "In country CHL measure Complete border closure was NEVER implemented\n", "In country CHL measure curfews was NEVER implemented\n", "In country CHL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CHN measure Health screenings in airports and border crossings was implemented on 2020-01-22 00:00:00\n", "In country CHN measure Introduction of isolation and quarantine policies was implemented on 2020-03-19 00:00:00\n", "In country CHN measure Awareness campaigns was implemented on 2020-03-31 00:00:00\n", "In country CHN measure Emergency administrative structures activated or established was implemented on UNKNOWN DATE\n", "In country CHN measure Limit public gatherings was implemented on 2020-01-29 00:00:00\n", "In country CHN measure Border closure was implemented on 2020-04-03 00:00:00\n", "In country CHN measure Schools closure was implemented on UNKNOWN DATE\n", "In country CHN measure Strengthening the public health system was implemented on 2020-02-03 00:00:00\n", "In country CHN measure Limit product imports/exports was NEVER implemented\n", "In country CHN measure Border checks was NEVER implemented\n", "In country CHN measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country CHN measure Surveillance and monitoring was implemented on 2020-03-30 00:00:00\n", "In country CHN measure Other public health measures enforced was implemented on 2020-03-24 00:00:00\n", "In country CHN measure Domestic travel restrictions was implemented on 2020-01-27 00:00:00\n", "In country CHN measure State of emergency declared was implemented on 2020-01-20 00:00:00\n", "In country CHN measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country CHN measure Partial lockdown was implemented on UNKNOWN DATE\n", "In country CHN measure Checkpoints within the country was NEVER implemented\n", "In country CHN measure Economic measures was implemented on 2020-03-14 00:00:00\n", "In country CHN measure Curfews was NEVER implemented\n", "In country CHN measure Changes in prison-related policies was NEVER implemented\n", "In country CHN measure Public services closure was implemented on UNKNOWN DATE\n", "In country CHN measure Military deployment was NEVER implemented\n", "In country CHN measure Full lockdown was NEVER implemented\n", "In country CHN measure Visa restrictions was implemented on 2020-03-26 00:00:00\n", "In country CHN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CHN measure Additional health/documents requirements upon arrival was implemented on 2020-03-24 00:00:00\n", "In country CHN measure Requirement to wear protective gear in public was implemented on 2020-03-31 00:00:00\n", "In country CHN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CHN measure Testing policy was implemented on 2020-03-27 00:00:00\n", "In country CHN measure Psychological assistance and medical social work was implemented on 2020-03-13 00:00:00\n", "In country CHN measure Mass population testing was implemented on 2020-04-02 00:00:00\n", "In country CHN measure testing policy was NEVER implemented\n", "In country CHN measure limit public gatherings was NEVER implemented\n", "In country CHN measure strengthening the public health system was NEVER implemented\n", "In country CHN measure Humanitarian exemptions was NEVER implemented\n", "In country CHN measure Complete border closure was NEVER implemented\n", "In country CHN measure curfews was NEVER implemented\n", "In country CHN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country HKG measure Health screenings in airports and border crossings was implemented on 2020-03-25 00:00:00\n", "In country HKG measure Introduction of isolation and quarantine policies was implemented on 2020-03-20 00:00:00\n", "In country HKG measure Awareness campaigns was NEVER implemented\n", "In country HKG measure Emergency administrative structures activated or established was implemented on 2020-03-25 00:00:00\n", "In country HKG measure Limit public gatherings was implemented on 2020-04-10 00:00:00\n", "In country HKG measure Border closure was NEVER implemented\n", "In country HKG measure Schools closure was NEVER implemented\n", "In country HKG measure Strengthening the public health system was NEVER implemented\n", "In country HKG measure Limit product imports/exports was NEVER implemented\n", "In country HKG measure Border checks was NEVER implemented\n", "In country HKG measure International flights suspension was NEVER implemented\n", "In country HKG measure Surveillance and monitoring was NEVER implemented\n", "In country HKG measure Other public health measures enforced was implemented on 2020-03-28 00:00:00\n", "In country HKG measure Domestic travel restrictions was NEVER implemented\n", "In country HKG measure State of emergency declared was NEVER implemented\n", "In country HKG measure General recommendations was implemented on 2020-03-17 00:00:00\n", "In country HKG measure Partial lockdown was NEVER implemented\n", "In country HKG measure Checkpoints within the country was NEVER implemented\n", "In country HKG measure Economic measures was implemented on 2020-04-08 00:00:00\n", "In country HKG measure Curfews was NEVER implemented\n", "In country HKG measure Changes in prison-related policies was NEVER implemented\n", "In country HKG measure Public services closure was implemented on 2020-04-10 00:00:00\n", "In country HKG measure Military deployment was NEVER implemented\n", "In country HKG measure Full lockdown was NEVER implemented\n", "In country HKG measure Visa restrictions was implemented on 2020-03-25 00:00:00\n", "In country HKG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country HKG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country HKG measure Requirement to wear protective gear in public was NEVER implemented\n", "In country HKG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country HKG measure Testing policy was implemented on 2020-04-09 00:00:00\n", "In country HKG measure Psychological assistance and medical social work was NEVER implemented\n", "In country HKG measure Mass population testing was NEVER implemented\n", "In country HKG measure testing policy was NEVER implemented\n", "In country HKG measure limit public gatherings was NEVER implemented\n", "In country HKG measure strengthening the public health system was NEVER implemented\n", "In country HKG measure Humanitarian exemptions was NEVER implemented\n", "In country HKG measure Complete border closure was NEVER implemented\n", "In country HKG measure curfews was NEVER implemented\n", "In country HKG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country COL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country COL measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country COL measure Awareness campaigns was NEVER implemented\n", "In country COL measure Emergency administrative structures activated or established was NEVER implemented\n", "In country COL measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country COL measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country COL measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country COL measure Strengthening the public health system was implemented on 2020-03-27 00:00:00\n", "In country COL measure Limit product imports/exports was NEVER implemented\n", "In country COL measure Border checks was NEVER implemented\n", "In country COL measure International flights suspension was implemented on 2020-03-23 00:00:00\n", "In country COL measure Surveillance and monitoring was NEVER implemented\n", "In country COL measure Other public health measures enforced was NEVER implemented\n", "In country COL measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country COL measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country COL measure General recommendations was NEVER implemented\n", "In country COL measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country COL measure Checkpoints within the country was NEVER implemented\n", "In country COL measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country COL measure Curfews was NEVER implemented\n", "In country COL measure Changes in prison-related policies was NEVER implemented\n", "In country COL measure Public services closure was NEVER implemented\n", "In country COL measure Military deployment was NEVER implemented\n", "In country COL measure Full lockdown was NEVER implemented\n", "In country COL measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country COL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country COL measure Additional health/documents requirements upon arrival was implemented on 2020-03-12 00:00:00\n", "In country COL measure Requirement to wear protective gear in public was implemented on 2020-04-04 00:00:00\n", "In country COL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country COL measure Testing policy was NEVER implemented\n", "In country COL measure Psychological assistance and medical social work was NEVER implemented\n", "In country COL measure Mass population testing was NEVER implemented\n", "In country COL measure testing policy was NEVER implemented\n", "In country COL measure limit public gatherings was NEVER implemented\n", "In country COL measure strengthening the public health system was NEVER implemented\n", "In country COL measure Humanitarian exemptions was NEVER implemented\n", "In country COL measure Complete border closure was NEVER implemented\n", "In country COL measure curfews was NEVER implemented\n", "In country COL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country COM measure Health screenings in airports and border crossings was NEVER implemented\n", "In country COM measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country COM measure Awareness campaigns was NEVER implemented\n", "In country COM measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country COM measure Limit public gatherings was implemented on 2020-03-25 00:00:00\n", "In country COM measure Border closure was NEVER implemented\n", "In country COM measure Schools closure was NEVER implemented\n", "In country COM measure Strengthening the public health system was NEVER implemented\n", "In country COM measure Limit product imports/exports was NEVER implemented\n", "In country COM measure Border checks was implemented on 2020-03-19 00:00:00\n", "In country COM measure International flights suspension was implemented on 2020-03-10 00:00:00\n", "In country COM measure Surveillance and monitoring was NEVER implemented\n", "In country COM measure Other public health measures enforced was NEVER implemented\n", "In country COM measure Domestic travel restrictions was implemented on 2020-03-20 00:00:00\n", "In country COM measure State of emergency declared was NEVER implemented\n", "In country COM measure General recommendations was NEVER implemented\n", "In country COM measure Partial lockdown was NEVER implemented\n", "In country COM measure Checkpoints within the country was NEVER implemented\n", "In country COM measure Economic measures was implemented on 2020-03-30 00:00:00\n", "In country COM measure Curfews was NEVER implemented\n", "In country COM measure Changes in prison-related policies was implemented on 2020-03-16 00:00:00\n", "In country COM measure Public services closure was NEVER implemented\n", "In country COM measure Military deployment was NEVER implemented\n", "In country COM measure Full lockdown was NEVER implemented\n", "In country COM measure Visa restrictions was implemented on 2020-03-19 00:00:00\n", "In country COM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country COM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country COM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country COM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country COM measure Testing policy was NEVER implemented\n", "In country COM measure Psychological assistance and medical social work was NEVER implemented\n", "In country COM measure Mass population testing was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country COM measure testing policy was NEVER implemented\n", "In country COM measure limit public gatherings was NEVER implemented\n", "In country COM measure strengthening the public health system was NEVER implemented\n", "In country COM measure Humanitarian exemptions was NEVER implemented\n", "In country COM measure Complete border closure was NEVER implemented\n", "In country COM measure curfews was NEVER implemented\n", "In country COM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country COG measure Health screenings in airports and border crossings was implemented on 2020-03-15 00:00:00\n", "In country COG measure Introduction of isolation and quarantine policies was implemented on 2020-03-09 00:00:00\n", "In country COG measure Awareness campaigns was implemented on 2020-03-20 00:00:00\n", "In country COG measure Emergency administrative structures activated or established was NEVER implemented\n", "In country COG measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country COG measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country COG measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country COG measure Strengthening the public health system was implemented on 2020-03-21 00:00:00\n", "In country COG measure Limit product imports/exports was NEVER implemented\n", "In country COG measure Border checks was NEVER implemented\n", "In country COG measure International flights suspension was NEVER implemented\n", "In country COG measure Surveillance and monitoring was NEVER implemented\n", "In country COG measure Other public health measures enforced was NEVER implemented\n", "In country COG measure Domestic travel restrictions was implemented on 2020-03-31 00:00:00\n", "In country COG measure State of emergency declared was implemented on 2020-03-28 00:00:00\n", "In country COG measure General recommendations was NEVER implemented\n", "In country COG measure Partial lockdown was implemented on 2020-03-31 00:00:00\n", "In country COG measure Checkpoints within the country was NEVER implemented\n", "In country COG measure Economic measures was implemented on 2020-03-31 00:00:00\n", "In country COG measure Curfews was implemented on 2020-03-31 00:00:00\n", "In country COG measure Changes in prison-related policies was NEVER implemented\n", "In country COG measure Public services closure was NEVER implemented\n", "In country COG measure Military deployment was implemented on 2020-03-31 00:00:00\n", "In country COG measure Full lockdown was NEVER implemented\n", "In country COG measure Visa restrictions was NEVER implemented\n", "In country COG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country COG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country COG measure Requirement to wear protective gear in public was NEVER implemented\n", "In country COG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country COG measure Testing policy was NEVER implemented\n", "In country COG measure Psychological assistance and medical social work was NEVER implemented\n", "In country COG measure Mass population testing was NEVER implemented\n", "In country COG measure testing policy was NEVER implemented\n", "In country COG measure limit public gatherings was NEVER implemented\n", "In country COG measure strengthening the public health system was NEVER implemented\n", "In country COG measure Humanitarian exemptions was NEVER implemented\n", "In country COG measure Complete border closure was NEVER implemented\n", "In country COG measure curfews was NEVER implemented\n", "In country COG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country COD measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country COD measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country COD measure Awareness campaigns was NEVER implemented\n", "In country COD measure Emergency administrative structures activated or established was NEVER implemented\n", "In country COD measure Limit public gatherings was implemented on 2020-03-18 00:00:00\n", "In country COD measure Border closure was implemented on 2020-03-25 00:00:00\n", "In country COD measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country COD measure Strengthening the public health system was NEVER implemented\n", "In country COD measure Limit product imports/exports was NEVER implemented\n", "In country COD measure Border checks was NEVER implemented\n", "In country COD measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country COD measure Surveillance and monitoring was NEVER implemented\n", "In country COD measure Other public health measures enforced was NEVER implemented\n", "In country COD measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country COD measure State of emergency declared was implemented on 2020-03-25 00:00:00\n", "In country COD measure General recommendations was NEVER implemented\n", "In country COD measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country COD measure Checkpoints within the country was NEVER implemented\n", "In country COD measure Economic measures was NEVER implemented\n", "In country COD measure Curfews was NEVER implemented\n", "In country COD measure Changes in prison-related policies was NEVER implemented\n", "In country COD measure Public services closure was NEVER implemented\n", "In country COD measure Military deployment was NEVER implemented\n", "In country COD measure Full lockdown was NEVER implemented\n", "In country COD measure Visa restrictions was NEVER implemented\n", "In country COD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country COD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country COD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country COD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country COD measure Testing policy was NEVER implemented\n", "In country COD measure Psychological assistance and medical social work was NEVER implemented\n", "In country COD measure Mass population testing was NEVER implemented\n", "In country COD measure testing policy was NEVER implemented\n", "In country COD measure limit public gatherings was NEVER implemented\n", "In country COD measure strengthening the public health system was NEVER implemented\n", "In country COD measure Humanitarian exemptions was NEVER implemented\n", "In country COD measure Complete border closure was NEVER implemented\n", "In country COD measure curfews was NEVER implemented\n", "In country COD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CRI measure Health screenings in airports and border crossings was NEVER implemented\n", "In country CRI measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country CRI measure Awareness campaigns was NEVER implemented\n", "In country CRI measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CRI measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country CRI measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country CRI measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country CRI measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country CRI measure Limit product imports/exports was NEVER implemented\n", "In country CRI measure Border checks was NEVER implemented\n", "In country CRI measure International flights suspension was implemented on 2020-03-30 00:00:00\n", "In country CRI measure Surveillance and monitoring was implemented on 2020-04-13 00:00:00\n", "In country CRI measure Other public health measures enforced was NEVER implemented\n", "In country CRI measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country CRI measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country CRI measure General recommendations was NEVER implemented\n", "In country CRI measure Partial lockdown was NEVER implemented\n", "In country CRI measure Checkpoints within the country was NEVER implemented\n", "In country CRI measure Economic measures was implemented on 2020-03-14 00:00:00\n", "In country CRI measure Curfews was NEVER implemented\n", "In country CRI measure Changes in prison-related policies was NEVER implemented\n", "In country CRI measure Public services closure was implemented on 2020-04-13 00:00:00\n", "In country CRI measure Military deployment was NEVER implemented\n", "In country CRI measure Full lockdown was NEVER implemented\n", "In country CRI measure Visa restrictions was implemented on 2020-03-24 00:00:00\n", "In country CRI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CRI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CRI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CRI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CRI measure Testing policy was NEVER implemented\n", "In country CRI measure Psychological assistance and medical social work was NEVER implemented\n", "In country CRI measure Mass population testing was NEVER implemented\n", "In country CRI measure testing policy was NEVER implemented\n", "In country CRI measure limit public gatherings was NEVER implemented\n", "In country CRI measure strengthening the public health system was NEVER implemented\n", "In country CRI measure Humanitarian exemptions was NEVER implemented\n", "In country CRI measure Complete border closure was NEVER implemented\n", "In country CRI measure curfews was NEVER implemented\n", "In country CRI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CIV measure Health screenings in airports and border crossings was implemented on 2020-01-02 00:00:00\n", "In country CIV measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country CIV measure Awareness campaigns was NEVER implemented\n", "In country CIV measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CIV measure Limit public gatherings was implemented on 2020-03-18 00:00:00\n", "In country CIV measure Border closure was implemented on 2020-03-22 00:00:00\n", "In country CIV measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country CIV measure Strengthening the public health system was implemented on 2020-03-31 00:00:00\n", "In country CIV measure Limit product imports/exports was NEVER implemented\n", "In country CIV measure Border checks was NEVER implemented\n", "In country CIV measure International flights suspension was implemented on 2020-03-22 00:00:00\n", "In country CIV measure Surveillance and monitoring was NEVER implemented\n", "In country CIV measure Other public health measures enforced was NEVER implemented\n", "In country CIV measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country CIV measure State of emergency declared was NEVER implemented\n", "In country CIV measure General recommendations was implemented on 2020-04-12 00:00:00\n", "In country CIV measure Partial lockdown was implemented on 2020-04-09 00:00:00\n", "In country CIV measure Checkpoints within the country was implemented on 2020-03-30 00:00:00\n", "In country CIV measure Economic measures was implemented on 2020-04-01 00:00:00\n", "In country CIV measure Curfews was implemented on 2020-03-24 00:00:00\n", "In country CIV measure Changes in prison-related policies was NEVER implemented\n", "In country CIV measure Public services closure was implemented on 2020-04-04 00:00:00\n", "In country CIV measure Military deployment was NEVER implemented\n", "In country CIV measure Full lockdown was NEVER implemented\n", "In country CIV measure Visa restrictions was implemented on 2020-03-19 00:00:00\n", "In country CIV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CIV measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CIV measure Requirement to wear protective gear in public was implemented on 2020-04-09 00:00:00\n", "In country CIV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CIV measure Testing policy was NEVER implemented\n", "In country CIV measure Psychological assistance and medical social work was NEVER implemented\n", "In country CIV measure Mass population testing was NEVER implemented\n", "In country CIV measure testing policy was NEVER implemented\n", "In country CIV measure limit public gatherings was NEVER implemented\n", "In country CIV measure strengthening the public health system was NEVER implemented\n", "In country CIV measure Humanitarian exemptions was NEVER implemented\n", "In country CIV measure Complete border closure was NEVER implemented\n", "In country CIV measure curfews was NEVER implemented\n", "In country CIV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country HRV measure Health screenings in airports and border crossings was NEVER implemented\n", "In country HRV measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country HRV measure Awareness campaigns was NEVER implemented\n", "In country HRV measure Emergency administrative structures activated or established was implemented on 2020-03-12 00:00:00\n", "In country HRV measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country HRV measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country HRV measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country HRV measure Strengthening the public health system was implemented on 2020-03-19 00:00:00\n", "In country HRV measure Limit product imports/exports was NEVER implemented\n", "In country HRV measure Border checks was NEVER implemented\n", "In country HRV measure International flights suspension was implemented on 2020-03-19 00:00:00\n", "In country HRV measure Surveillance and monitoring was implemented on UNKNOWN DATE\n", "In country HRV measure Other public health measures enforced was implemented on 2020-04-08 00:00:00\n", "In country HRV measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country HRV measure State of emergency declared was NEVER implemented\n", "In country HRV measure General recommendations was implemented on 2020-03-03 00:00:00\n", "In country HRV measure Partial lockdown was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country HRV measure Checkpoints within the country was NEVER implemented\n", "In country HRV measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country HRV measure Curfews was NEVER implemented\n", "In country HRV measure Changes in prison-related policies was NEVER implemented\n", "In country HRV measure Public services closure was implemented on 2020-03-19 00:00:00\n", "In country HRV measure Military deployment was NEVER implemented\n", "In country HRV measure Full lockdown was NEVER implemented\n", "In country HRV measure Visa restrictions was NEVER implemented\n", "In country HRV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country HRV measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country HRV measure Requirement to wear protective gear in public was NEVER implemented\n", "In country HRV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country HRV measure Testing policy was NEVER implemented\n", "In country HRV measure Psychological assistance and medical social work was NEVER implemented\n", "In country HRV measure Mass population testing was NEVER implemented\n", "In country HRV measure testing policy was NEVER implemented\n", "In country HRV measure limit public gatherings was NEVER implemented\n", "In country HRV measure strengthening the public health system was NEVER implemented\n", "In country HRV measure Humanitarian exemptions was NEVER implemented\n", "In country HRV measure Complete border closure was NEVER implemented\n", "In country HRV measure curfews was NEVER implemented\n", "In country HRV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CUB measure Health screenings in airports and border crossings was implemented on 2020-03-09 00:00:00\n", "In country CUB measure Introduction of isolation and quarantine policies was implemented on 2020-03-24 00:00:00\n", "In country CUB measure Awareness campaigns was implemented on 2020-02-18 00:00:00\n", "In country CUB measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CUB measure Limit public gatherings was implemented on 2020-03-24 00:00:00\n", "In country CUB measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country CUB measure Schools closure was NEVER implemented\n", "In country CUB measure Strengthening the public health system was implemented on 2020-02-28 00:00:00\n", "In country CUB measure Limit product imports/exports was NEVER implemented\n", "In country CUB measure Border checks was NEVER implemented\n", "In country CUB measure International flights suspension was implemented on 2020-04-02 00:00:00\n", "In country CUB measure Surveillance and monitoring was NEVER implemented\n", "In country CUB measure Other public health measures enforced was NEVER implemented\n", "In country CUB measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country CUB measure State of emergency declared was NEVER implemented\n", "In country CUB measure General recommendations was implemented on 2020-03-26 00:00:00\n", "In country CUB measure Partial lockdown was implemented on 2020-04-12 00:00:00\n", "In country CUB measure Checkpoints within the country was NEVER implemented\n", "In country CUB measure Economic measures was implemented on 2020-03-20 00:00:00\n", "In country CUB measure Curfews was NEVER implemented\n", "In country CUB measure Changes in prison-related policies was NEVER implemented\n", "In country CUB measure Public services closure was NEVER implemented\n", "In country CUB measure Military deployment was implemented on 2020-03-09 00:00:00\n", "In country CUB measure Full lockdown was NEVER implemented\n", "In country CUB measure Visa restrictions was NEVER implemented\n", "In country CUB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CUB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CUB measure Requirement to wear protective gear in public was implemented on 2020-04-11 00:00:00\n", "In country CUB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CUB measure Testing policy was implemented on 2020-04-01 00:00:00\n", "In country CUB measure Psychological assistance and medical social work was NEVER implemented\n", "In country CUB measure Mass population testing was NEVER implemented\n", "In country CUB measure testing policy was NEVER implemented\n", "In country CUB measure limit public gatherings was NEVER implemented\n", "In country CUB measure strengthening the public health system was NEVER implemented\n", "In country CUB measure Humanitarian exemptions was NEVER implemented\n", "In country CUB measure Complete border closure was NEVER implemented\n", "In country CUB measure curfews was NEVER implemented\n", "In country CUB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CYP measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country CYP measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Awareness campaigns was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Emergency administrative structures activated or established was implemented on 2020-03-24 00:00:00\n", "In country CYP measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country CYP measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country CYP measure Limit product imports/exports was NEVER implemented\n", "In country CYP measure Border checks was NEVER implemented\n", "In country CYP measure International flights suspension was implemented on 2020-03-21 00:00:00\n", "In country CYP measure Surveillance and monitoring was implemented on 2020-04-08 00:00:00\n", "In country CYP measure Other public health measures enforced was implemented on 2020-04-01 00:00:00\n", "In country CYP measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country CYP measure State of emergency declared was implemented on 2020-03-15 00:00:00\n", "In country CYP measure General recommendations was NEVER implemented\n", "In country CYP measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country CYP measure Checkpoints within the country was NEVER implemented\n", "In country CYP measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country CYP measure Changes in prison-related policies was NEVER implemented\n", "In country CYP measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country CYP measure Military deployment was NEVER implemented\n", "In country CYP measure Full lockdown was NEVER implemented\n", "In country CYP measure Visa restrictions was NEVER implemented\n", "In country CYP measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CYP measure Additional health/documents requirements upon arrival was implemented on 2020-03-15 00:00:00\n", "In country CYP measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CYP measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CYP measure Testing policy was implemented on 2020-04-08 00:00:00\n", "In country CYP measure Psychological assistance and medical social work was NEVER implemented\n", "In country CYP measure Mass population testing was NEVER implemented\n", "In country CYP measure testing policy was NEVER implemented\n", "In country CYP measure limit public gatherings was NEVER implemented\n", "In country CYP measure strengthening the public health system was NEVER implemented\n", "In country CYP measure Humanitarian exemptions was NEVER implemented\n", "In country CYP measure Complete border closure was NEVER implemented\n", "In country CYP measure curfews was NEVER implemented\n", "In country CYP measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CZE measure Health screenings in airports and border crossings was implemented on 2020-03-12 00:00:00\n", "In country CZE measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country CZE measure Awareness campaigns was NEVER implemented\n", "In country CZE measure Emergency administrative structures activated or established was NEVER implemented\n", "In country CZE measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country CZE measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country CZE measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country CZE measure Strengthening the public health system was implemented on 2020-03-19 00:00:00\n", "In country CZE measure Limit product imports/exports was implemented on 2020-03-18 00:00:00\n", "In country CZE measure Border checks was implemented on UNKNOWN DATE\n", "In country CZE measure International flights suspension was NEVER implemented\n", "In country CZE measure Surveillance and monitoring was implemented on 2020-03-19 00:00:00\n", "In country CZE measure Other public health measures enforced was NEVER implemented\n", "In country CZE measure Domestic travel restrictions was NEVER implemented\n", "In country CZE measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country CZE measure General recommendations was implemented on UNKNOWN DATE\n", "In country CZE measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country CZE measure Checkpoints within the country was NEVER implemented\n", "In country CZE measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country CZE measure Curfews was NEVER implemented\n", "In country CZE measure Changes in prison-related policies was NEVER implemented\n", "In country CZE measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country CZE measure Military deployment was NEVER implemented\n", "In country CZE measure Full lockdown was NEVER implemented\n", "In country CZE measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country CZE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CZE measure Additional health/documents requirements upon arrival was implemented on 2020-03-21 00:00:00\n", "In country CZE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CZE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CZE measure Testing policy was implemented on 2020-03-27 00:00:00\n", "In country CZE measure Psychological assistance and medical social work was implemented on 2020-03-26 00:00:00\n", "In country CZE measure Mass population testing was NEVER implemented\n", "In country CZE measure testing policy was NEVER implemented\n", "In country CZE measure limit public gatherings was NEVER implemented\n", "In country CZE measure strengthening the public health system was NEVER implemented\n", "In country CZE measure Humanitarian exemptions was NEVER implemented\n", "In country CZE measure Complete border closure was NEVER implemented\n", "In country CZE measure curfews was NEVER implemented\n", "In country CZE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DNK measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country DNK measure Introduction of isolation and quarantine policies was implemented on 2020-03-04 00:00:00\n", "In country DNK measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country DNK measure Emergency administrative structures activated or established was implemented on 2020-03-17 00:00:00\n", "In country DNK measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country DNK measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country DNK measure Schools closure was implemented on 2020-03-11 00:00:00\n", "In country DNK measure Strengthening the public health system was implemented on 2020-03-19 00:00:00\n", "In country DNK measure Limit product imports/exports was NEVER implemented\n", "In country DNK measure Border checks was implemented on UNKNOWN DATE\n", "In country DNK measure International flights suspension was NEVER implemented\n", "In country DNK measure Surveillance and monitoring was implemented on 2020-03-12 00:00:00\n", "In country DNK measure Other public health measures enforced was implemented on 2020-03-18 00:00:00\n", "In country DNK measure Domestic travel restrictions was NEVER implemented\n", "In country DNK measure State of emergency declared was NEVER implemented\n", "In country DNK measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country DNK measure Partial lockdown was NEVER implemented\n", "In country DNK measure Checkpoints within the country was NEVER implemented\n", "In country DNK measure Economic measures was implemented on 2020-02-27 00:00:00\n", "In country DNK measure Curfews was NEVER implemented\n", "In country DNK measure Changes in prison-related policies was implemented on 2020-03-18 00:00:00\n", "In country DNK measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country DNK measure Military deployment was NEVER implemented\n", "In country DNK measure Full lockdown was NEVER implemented\n", "In country DNK measure Visa restrictions was NEVER implemented\n", "In country DNK measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DNK measure Additional health/documents requirements upon arrival was implemented on 2020-03-14 00:00:00\n", "In country DNK measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DNK measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DNK measure Testing policy was implemented on 2020-03-25 00:00:00\n", "In country DNK measure Psychological assistance and medical social work was implemented on 2020-03-25 00:00:00\n", "In country DNK measure Mass population testing was NEVER implemented\n", "In country DNK measure testing policy was implemented on 2020-03-22 00:00:00\n", "In country DNK measure limit public gatherings was implemented on 2020-03-22 00:00:00\n", "In country DNK measure strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country DNK measure Humanitarian exemptions was NEVER implemented\n", "In country DNK measure Complete border closure was NEVER implemented\n", "In country DNK measure curfews was NEVER implemented\n", "In country DNK measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DJI measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country DJI measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country DJI measure Awareness campaigns was NEVER implemented\n", "In country DJI measure Emergency administrative structures activated or established was NEVER implemented\n", "In country DJI measure Limit public gatherings was NEVER implemented\n", "In country DJI measure Border closure was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country DJI measure Schools closure was NEVER implemented\n", "In country DJI measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country DJI measure Limit product imports/exports was NEVER implemented\n", "In country DJI measure Border checks was NEVER implemented\n", "In country DJI measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country DJI measure Surveillance and monitoring was NEVER implemented\n", "In country DJI measure Other public health measures enforced was NEVER implemented\n", "In country DJI measure Domestic travel restrictions was NEVER implemented\n", "In country DJI measure State of emergency declared was NEVER implemented\n", "In country DJI measure General recommendations was NEVER implemented\n", "In country DJI measure Partial lockdown was NEVER implemented\n", "In country DJI measure Checkpoints within the country was NEVER implemented\n", "In country DJI measure Economic measures was NEVER implemented\n", "In country DJI measure Curfews was NEVER implemented\n", "In country DJI measure Changes in prison-related policies was NEVER implemented\n", "In country DJI measure Public services closure was NEVER implemented\n", "In country DJI measure Military deployment was NEVER implemented\n", "In country DJI measure Full lockdown was NEVER implemented\n", "In country DJI measure Visa restrictions was NEVER implemented\n", "In country DJI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DJI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country DJI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DJI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DJI measure Testing policy was NEVER implemented\n", "In country DJI measure Psychological assistance and medical social work was NEVER implemented\n", "In country DJI measure Mass population testing was NEVER implemented\n", "In country DJI measure testing policy was NEVER implemented\n", "In country DJI measure limit public gatherings was NEVER implemented\n", "In country DJI measure strengthening the public health system was NEVER implemented\n", "In country DJI measure Humanitarian exemptions was NEVER implemented\n", "In country DJI measure Complete border closure was NEVER implemented\n", "In country DJI measure curfews was NEVER implemented\n", "In country DJI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DMA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country DMA measure Introduction of isolation and quarantine policies was implemented on 2020-03-25 00:00:00\n", "In country DMA measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country DMA measure Emergency administrative structures activated or established was implemented on 2020-03-03 00:00:00\n", "In country DMA measure Limit public gatherings was NEVER implemented\n", "In country DMA measure Border closure was implemented on 2020-03-26 00:00:00\n", "In country DMA measure Schools closure was NEVER implemented\n", "In country DMA measure Strengthening the public health system was implemented on 2020-01-29 00:00:00\n", "In country DMA measure Limit product imports/exports was NEVER implemented\n", "In country DMA measure Border checks was NEVER implemented\n", "In country DMA measure International flights suspension was implemented on UNKNOWN DATE\n", "In country DMA measure Surveillance and monitoring was implemented on 2020-03-25 00:00:00\n", "In country DMA measure Other public health measures enforced was NEVER implemented\n", "In country DMA measure Domestic travel restrictions was NEVER implemented\n", "In country DMA measure State of emergency declared was NEVER implemented\n", "In country DMA measure General recommendations was NEVER implemented\n", "In country DMA measure Partial lockdown was NEVER implemented\n", "In country DMA measure Checkpoints within the country was NEVER implemented\n", "In country DMA measure Economic measures was implemented on 2020-01-29 00:00:00\n", "In country DMA measure Curfews was NEVER implemented\n", "In country DMA measure Changes in prison-related policies was NEVER implemented\n", "In country DMA measure Public services closure was NEVER implemented\n", "In country DMA measure Military deployment was NEVER implemented\n", "In country DMA measure Full lockdown was NEVER implemented\n", "In country DMA measure Visa restrictions was NEVER implemented\n", "In country DMA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DMA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country DMA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DMA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DMA measure Testing policy was NEVER implemented\n", "In country DMA measure Psychological assistance and medical social work was NEVER implemented\n", "In country DMA measure Mass population testing was NEVER implemented\n", "In country DMA measure testing policy was NEVER implemented\n", "In country DMA measure limit public gatherings was NEVER implemented\n", "In country DMA measure strengthening the public health system was NEVER implemented\n", "In country DMA measure Humanitarian exemptions was NEVER implemented\n", "In country DMA measure Complete border closure was NEVER implemented\n", "In country DMA measure curfews was NEVER implemented\n", "In country DMA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DOM measure Health screenings in airports and border crossings was implemented on 2020-02-29 00:00:00\n", "In country DOM measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country DOM measure Awareness campaigns was NEVER implemented\n", "In country DOM measure Emergency administrative structures activated or established was implemented on 2020-04-03 00:00:00\n", "In country DOM measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country DOM measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country DOM measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country DOM measure Strengthening the public health system was NEVER implemented\n", "In country DOM measure Limit product imports/exports was NEVER implemented\n", "In country DOM measure Border checks was NEVER implemented\n", "In country DOM measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country DOM measure Surveillance and monitoring was NEVER implemented\n", "In country DOM measure Other public health measures enforced was implemented on 2020-03-27 00:00:00\n", "In country DOM measure Domestic travel restrictions was implemented on 2020-03-19 00:00:00\n", "In country DOM measure State of emergency declared was implemented on 2020-03-19 00:00:00\n", "In country DOM measure General recommendations was implemented on 2020-03-23 00:00:00\n", "In country DOM measure Partial lockdown was NEVER implemented\n", "In country DOM measure Checkpoints within the country was implemented on 2020-04-03 00:00:00\n", "In country DOM measure Economic measures was implemented on 2020-04-13 00:00:00\n", "In country DOM measure Curfews was implemented on 2020-03-20 00:00:00\n", "In country DOM measure Changes in prison-related policies was NEVER implemented\n", "In country DOM measure Public services closure was NEVER implemented\n", "In country DOM measure Military deployment was NEVER implemented\n", "In country DOM measure Full lockdown was NEVER implemented\n", "In country DOM measure Visa restrictions was NEVER implemented\n", "In country DOM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DOM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country DOM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DOM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DOM measure Testing policy was implemented on 2020-04-13 00:00:00\n", "In country DOM measure Psychological assistance and medical social work was NEVER implemented\n", "In country DOM measure Mass population testing was NEVER implemented\n", "In country DOM measure testing policy was NEVER implemented\n", "In country DOM measure limit public gatherings was NEVER implemented\n", "In country DOM measure strengthening the public health system was NEVER implemented\n", "In country DOM measure Humanitarian exemptions was NEVER implemented\n", "In country DOM measure Complete border closure was NEVER implemented\n", "In country DOM measure curfews was NEVER implemented\n", "In country DOM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ECU measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ECU measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country ECU measure Awareness campaigns was NEVER implemented\n", "In country ECU measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ECU measure Limit public gatherings was implemented on 2020-04-02 00:00:00\n", "In country ECU measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country ECU measure Schools closure was implemented on 2020-03-02 00:00:00\n", "In country ECU measure Strengthening the public health system was implemented on 2020-03-05 00:00:00\n", "In country ECU measure Limit product imports/exports was NEVER implemented\n", "In country ECU measure Border checks was NEVER implemented\n", "In country ECU measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country ECU measure Surveillance and monitoring was implemented on 2020-03-03 00:00:00\n", "In country ECU measure Other public health measures enforced was NEVER implemented\n", "In country ECU measure Domestic travel restrictions was implemented on 2020-03-17 00:00:00\n", "In country ECU measure State of emergency declared was implemented on 2020-03-22 00:00:00\n", "In country ECU measure General recommendations was NEVER implemented\n", "In country ECU measure Partial lockdown was implemented on 2020-03-17 00:00:00\n", "In country ECU measure Checkpoints within the country was NEVER implemented\n", "In country ECU measure Economic measures was implemented on 2020-03-02 00:00:00\n", "In country ECU measure Curfews was implemented on 2020-03-21 00:00:00\n", "In country ECU measure Changes in prison-related policies was NEVER implemented\n", "In country ECU measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country ECU measure Military deployment was implemented on 2020-03-25 00:00:00\n", "In country ECU measure Full lockdown was NEVER implemented\n", "In country ECU measure Visa restrictions was NEVER implemented\n", "In country ECU measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ECU measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ECU measure Requirement to wear protective gear in public was implemented on 2020-03-17 00:00:00\n", "In country ECU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ECU measure Testing policy was NEVER implemented\n", "In country ECU measure Psychological assistance and medical social work was implemented on 2020-03-26 00:00:00\n", "In country ECU measure Mass population testing was NEVER implemented\n", "In country ECU measure testing policy was NEVER implemented\n", "In country ECU measure limit public gatherings was NEVER implemented\n", "In country ECU measure strengthening the public health system was NEVER implemented\n", "In country ECU measure Humanitarian exemptions was NEVER implemented\n", "In country ECU measure Complete border closure was NEVER implemented\n", "In country ECU measure curfews was NEVER implemented\n", "In country ECU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country EGY measure Health screenings in airports and border crossings was implemented on 2020-03-19 00:00:00\n", "In country EGY measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country EGY measure Awareness campaigns was NEVER implemented\n", "In country EGY measure Emergency administrative structures activated or established was implemented on 2020-04-13 00:00:00\n", "In country EGY measure Limit public gatherings was implemented on 2020-04-07 00:00:00\n", "In country EGY measure Border closure was NEVER implemented\n", "In country EGY measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country EGY measure Strengthening the public health system was implemented on 2020-03-25 00:00:00\n", "In country EGY measure Limit product imports/exports was NEVER implemented\n", "In country EGY measure Border checks was NEVER implemented\n", "In country EGY measure International flights suspension was implemented on 2020-03-19 00:00:00\n", "In country EGY measure Surveillance and monitoring was NEVER implemented\n", "In country EGY measure Other public health measures enforced was implemented on 2020-03-29 00:00:00\n", "In country EGY measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country EGY measure State of emergency declared was NEVER implemented\n", "In country EGY measure General recommendations was NEVER implemented\n", "In country EGY measure Partial lockdown was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country EGY measure Checkpoints within the country was NEVER implemented\n", "In country EGY measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country EGY measure Curfews was implemented on 2020-03-25 00:00:00\n", "In country EGY measure Changes in prison-related policies was NEVER implemented\n", "In country EGY measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country EGY measure Military deployment was NEVER implemented\n", "In country EGY measure Full lockdown was NEVER implemented\n", "In country EGY measure Visa restrictions was implemented on 2020-03-24 00:00:00\n", "In country EGY measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country EGY measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country EGY measure Requirement to wear protective gear in public was NEVER implemented\n", "In country EGY measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country EGY measure Testing policy was NEVER implemented\n", "In country EGY measure Psychological assistance and medical social work was NEVER implemented\n", "In country EGY measure Mass population testing was NEVER implemented\n", "In country EGY measure testing policy was NEVER implemented\n", "In country EGY measure limit public gatherings was NEVER implemented\n", "In country EGY measure strengthening the public health system was NEVER implemented\n", "In country EGY measure Humanitarian exemptions was NEVER implemented\n", "In country EGY measure Complete border closure was NEVER implemented\n", "In country EGY measure curfews was NEVER implemented\n", "In country EGY measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SLV measure Health screenings in airports and border crossings was implemented on 2020-03-12 00:00:00\n", "In country SLV measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country SLV measure Awareness campaigns was NEVER implemented\n", "In country SLV measure Emergency administrative structures activated or established was implemented on 2020-04-02 00:00:00\n", "In country SLV measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country SLV measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country SLV measure Schools closure was implemented on 2020-03-11 00:00:00\n", "In country SLV measure Strengthening the public health system was NEVER implemented\n", "In country SLV measure Limit product imports/exports was NEVER implemented\n", "In country SLV measure Border checks was NEVER implemented\n", "In country SLV measure International flights suspension was NEVER implemented\n", "In country SLV measure Surveillance and monitoring was implemented on 2020-03-23 00:00:00\n", "In country SLV measure Other public health measures enforced was NEVER implemented\n", "In country SLV measure Domestic travel restrictions was NEVER implemented\n", "In country SLV measure State of emergency declared was implemented on 2020-03-14 00:00:00\n", "In country SLV measure General recommendations was NEVER implemented\n", "In country SLV measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country SLV measure Checkpoints within the country was NEVER implemented\n", "In country SLV measure Economic measures was implemented on 2020-03-11 00:00:00\n", "In country SLV measure Curfews was NEVER implemented\n", "In country SLV measure Changes in prison-related policies was NEVER implemented\n", "In country SLV measure Public services closure was implemented on 2020-04-02 00:00:00\n", "In country SLV measure Military deployment was NEVER implemented\n", "In country SLV measure Full lockdown was NEVER implemented\n", "In country SLV measure Visa restrictions was NEVER implemented\n", "In country SLV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SLV measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SLV measure Requirement to wear protective gear in public was implemented on 2020-04-12 00:00:00\n", "In country SLV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SLV measure Testing policy was NEVER implemented\n", "In country SLV measure Psychological assistance and medical social work was NEVER implemented\n", "In country SLV measure Mass population testing was NEVER implemented\n", "In country SLV measure testing policy was NEVER implemented\n", "In country SLV measure limit public gatherings was NEVER implemented\n", "In country SLV measure strengthening the public health system was NEVER implemented\n", "In country SLV measure Humanitarian exemptions was NEVER implemented\n", "In country SLV measure Complete border closure was NEVER implemented\n", "In country SLV measure curfews was NEVER implemented\n", "In country SLV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GNQ measure Health screenings in airports and border crossings was NEVER implemented\n", "In country GNQ measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure Awareness campaigns was implemented on 2020-03-23 00:00:00\n", "In country GNQ measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country GNQ measure Limit public gatherings was implemented on 2020-03-23 00:00:00\n", "In country GNQ measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country GNQ measure Strengthening the public health system was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure Limit product imports/exports was NEVER implemented\n", "In country GNQ measure Border checks was NEVER implemented\n", "In country GNQ measure International flights suspension was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure Surveillance and monitoring was implemented on 2020-03-31 00:00:00\n", "In country GNQ measure Other public health measures enforced was NEVER implemented\n", "In country GNQ measure Domestic travel restrictions was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure State of emergency declared was implemented on 2020-03-18 00:00:00\n", "In country GNQ measure General recommendations was implemented on 2020-03-18 00:00:00\n", "In country GNQ measure Partial lockdown was NEVER implemented\n", "In country GNQ measure Checkpoints within the country was NEVER implemented\n", "In country GNQ measure Economic measures was implemented on 2020-03-24 00:00:00\n", "In country GNQ measure Curfews was implemented on 2020-03-31 00:00:00\n", "In country GNQ measure Changes in prison-related policies was NEVER implemented\n", "In country GNQ measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country GNQ measure Military deployment was NEVER implemented\n", "In country GNQ measure Full lockdown was NEVER implemented\n", "In country GNQ measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country GNQ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GNQ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GNQ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GNQ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GNQ measure Testing policy was NEVER implemented\n", "In country GNQ measure Psychological assistance and medical social work was NEVER implemented\n", "In country GNQ measure Mass population testing was NEVER implemented\n", "In country GNQ measure testing policy was NEVER implemented\n", "In country GNQ measure limit public gatherings was NEVER implemented\n", "In country GNQ measure strengthening the public health system was NEVER implemented\n", "In country GNQ measure Humanitarian exemptions was NEVER implemented\n", "In country GNQ measure Complete border closure was NEVER implemented\n", "In country GNQ measure curfews was NEVER implemented\n", "In country GNQ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ERI measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country ERI measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country ERI measure Awareness campaigns was implemented on 2020-03-12 00:00:00\n", "In country ERI measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ERI measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country ERI measure Border closure was NEVER implemented\n", "In country ERI measure Schools closure was NEVER implemented\n", "In country ERI measure Strengthening the public health system was NEVER implemented\n", "In country ERI measure Limit product imports/exports was NEVER implemented\n", "In country ERI measure Border checks was NEVER implemented\n", "In country ERI measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country ERI measure Surveillance and monitoring was NEVER implemented\n", "In country ERI measure Other public health measures enforced was NEVER implemented\n", "In country ERI measure Domestic travel restrictions was implemented on 2020-03-17 00:00:00\n", "In country ERI measure State of emergency declared was NEVER implemented\n", "In country ERI measure General recommendations was implemented on 2020-03-11 00:00:00\n", "In country ERI measure Partial lockdown was implemented on 2020-04-02 00:00:00\n", "In country ERI measure Checkpoints within the country was NEVER implemented\n", "In country ERI measure Economic measures was implemented on 2020-03-23 00:00:00\n", "In country ERI measure Curfews was NEVER implemented\n", "In country ERI measure Changes in prison-related policies was NEVER implemented\n", "In country ERI measure Public services closure was implemented on 2020-03-31 00:00:00\n", "In country ERI measure Military deployment was NEVER implemented\n", "In country ERI measure Full lockdown was NEVER implemented\n", "In country ERI measure Visa restrictions was NEVER implemented\n", "In country ERI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ERI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ERI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ERI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ERI measure Testing policy was NEVER implemented\n", "In country ERI measure Psychological assistance and medical social work was NEVER implemented\n", "In country ERI measure Mass population testing was NEVER implemented\n", "In country ERI measure testing policy was NEVER implemented\n", "In country ERI measure limit public gatherings was NEVER implemented\n", "In country ERI measure strengthening the public health system was NEVER implemented\n", "In country ERI measure Humanitarian exemptions was NEVER implemented\n", "In country ERI measure Complete border closure was NEVER implemented\n", "In country ERI measure curfews was NEVER implemented\n", "In country ERI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country EST measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country EST measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country EST measure Awareness campaigns was implemented on 2020-03-16 00:00:00\n", "In country EST measure Emergency administrative structures activated or established was NEVER implemented\n", "In country EST measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country EST measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country EST measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country EST measure Strengthening the public health system was implemented on 2020-03-25 00:00:00\n", "In country EST measure Limit product imports/exports was NEVER implemented\n", "In country EST measure Border checks was NEVER implemented\n", "In country EST measure International flights suspension was implemented on 2020-03-11 00:00:00\n", "In country EST measure Surveillance and monitoring was implemented on 2020-04-11 00:00:00\n", "In country EST measure Other public health measures enforced was NEVER implemented\n", "In country EST measure Domestic travel restrictions was implemented on 2020-03-14 00:00:00\n", "In country EST measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country EST measure General recommendations was implemented on 2020-03-11 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country EST measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country EST measure Checkpoints within the country was NEVER implemented\n", "In country EST measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country EST measure Curfews was NEVER implemented\n", "In country EST measure Changes in prison-related policies was implemented on 2020-04-04 00:00:00\n", "In country EST measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country EST measure Military deployment was implemented on 2020-03-30 00:00:00\n", "In country EST measure Full lockdown was NEVER implemented\n", "In country EST measure Visa restrictions was implemented on 2020-03-17 00:00:00\n", "In country EST measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country EST measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country EST measure Requirement to wear protective gear in public was NEVER implemented\n", "In country EST measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country EST measure Testing policy was NEVER implemented\n", "In country EST measure Psychological assistance and medical social work was NEVER implemented\n", "In country EST measure Mass population testing was implemented on 2020-04-09 00:00:00\n", "In country EST measure testing policy was implemented on UNKNOWN DATE\n", "In country EST measure limit public gatherings was implemented on 2020-03-25 00:00:00\n", "In country EST measure strengthening the public health system was NEVER implemented\n", "In country EST measure Humanitarian exemptions was NEVER implemented\n", "In country EST measure Complete border closure was NEVER implemented\n", "In country EST measure curfews was NEVER implemented\n", "In country EST measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SWZ measure Health screenings in airports and border crossings was implemented on 2020-02-25 00:00:00\n", "In country SWZ measure Introduction of isolation and quarantine policies was implemented on 2020-03-26 00:00:00\n", "In country SWZ measure Awareness campaigns was NEVER implemented\n", "In country SWZ measure Emergency administrative structures activated or established was implemented on 2020-03-31 00:00:00\n", "In country SWZ measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country SWZ measure Border closure was implemented on 2020-03-26 00:00:00\n", "In country SWZ measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country SWZ measure Strengthening the public health system was NEVER implemented\n", "In country SWZ measure Limit product imports/exports was NEVER implemented\n", "In country SWZ measure Border checks was NEVER implemented\n", "In country SWZ measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country SWZ measure Surveillance and monitoring was implemented on 2020-03-27 00:00:00\n", "In country SWZ measure Other public health measures enforced was NEVER implemented\n", "In country SWZ measure Domestic travel restrictions was implemented on 2020-03-27 00:00:00\n", "In country SWZ measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country SWZ measure General recommendations was implemented on 2020-02-25 00:00:00\n", "In country SWZ measure Partial lockdown was implemented on 2020-03-27 00:00:00\n", "In country SWZ measure Checkpoints within the country was NEVER implemented\n", "In country SWZ measure Economic measures was implemented on 2020-03-28 00:00:00\n", "In country SWZ measure Curfews was NEVER implemented\n", "In country SWZ measure Changes in prison-related policies was implemented on 2020-03-18 00:00:00\n", "In country SWZ measure Public services closure was implemented on 2020-04-06 00:00:00\n", "In country SWZ measure Military deployment was implemented on 2020-03-26 00:00:00\n", "In country SWZ measure Full lockdown was NEVER implemented\n", "In country SWZ measure Visa restrictions was implemented on 2020-03-20 00:00:00\n", "In country SWZ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SWZ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SWZ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SWZ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SWZ measure Testing policy was NEVER implemented\n", "In country SWZ measure Psychological assistance and medical social work was NEVER implemented\n", "In country SWZ measure Mass population testing was NEVER implemented\n", "In country SWZ measure testing policy was NEVER implemented\n", "In country SWZ measure limit public gatherings was NEVER implemented\n", "In country SWZ measure strengthening the public health system was NEVER implemented\n", "In country SWZ measure Humanitarian exemptions was NEVER implemented\n", "In country SWZ measure Complete border closure was NEVER implemented\n", "In country SWZ measure curfews was NEVER implemented\n", "In country SWZ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ETH measure Health screenings in airports and border crossings was implemented on 2020-03-24 00:00:00\n", "In country ETH measure Introduction of isolation and quarantine policies was implemented on 2020-02-22 00:00:00\n", "In country ETH measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country ETH measure Emergency administrative structures activated or established was implemented on 2020-03-20 00:00:00\n", "In country ETH measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ETH measure Border closure was implemented on 2020-03-23 00:00:00\n", "In country ETH measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country ETH measure Strengthening the public health system was implemented on 2020-03-27 00:00:00\n", "In country ETH measure Limit product imports/exports was NEVER implemented\n", "In country ETH measure Border checks was NEVER implemented\n", "In country ETH measure International flights suspension was NEVER implemented\n", "In country ETH measure Surveillance and monitoring was NEVER implemented\n", "In country ETH measure Other public health measures enforced was implemented on 2020-04-11 00:00:00\n", "In country ETH measure Domestic travel restrictions was NEVER implemented\n", "In country ETH measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country ETH measure General recommendations was NEVER implemented\n", "In country ETH measure Partial lockdown was NEVER implemented\n", "In country ETH measure Checkpoints within the country was NEVER implemented\n", "In country ETH measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country ETH measure Curfews was NEVER implemented\n", "In country ETH measure Changes in prison-related policies was implemented on 2020-03-27 00:00:00\n", "In country ETH measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country ETH measure Military deployment was implemented on 2020-03-22 00:00:00\n", "In country ETH measure Full lockdown was NEVER implemented\n", "In country ETH measure Visa restrictions was NEVER implemented\n", "In country ETH measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ETH measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ETH measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ETH measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ETH measure Testing policy was NEVER implemented\n", "In country ETH measure Psychological assistance and medical social work was NEVER implemented\n", "In country ETH measure Mass population testing was NEVER implemented\n", "In country ETH measure testing policy was NEVER implemented\n", "In country ETH measure limit public gatherings was NEVER implemented\n", "In country ETH measure strengthening the public health system was NEVER implemented\n", "In country ETH measure Humanitarian exemptions was NEVER implemented\n", "In country ETH measure Complete border closure was NEVER implemented\n", "In country ETH measure curfews was NEVER implemented\n", "In country ETH measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country FJI measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country FJI measure Introduction of isolation and quarantine policies was implemented on 2020-03-18 00:00:00\n", "In country FJI measure Awareness campaigns was implemented on 2020-03-31 00:00:00\n", "In country FJI measure Emergency administrative structures activated or established was implemented on 2020-04-01 00:00:00\n", "In country FJI measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country FJI measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country FJI measure Schools closure was NEVER implemented\n", "In country FJI measure Strengthening the public health system was implemented on 2020-03-22 00:00:00\n", "In country FJI measure Limit product imports/exports was NEVER implemented\n", "In country FJI measure Border checks was NEVER implemented\n", "In country FJI measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country FJI measure Surveillance and monitoring was implemented on 2020-03-24 00:00:00\n", "In country FJI measure Other public health measures enforced was NEVER implemented\n", "In country FJI measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country FJI measure State of emergency declared was NEVER implemented\n", "In country FJI measure General recommendations was implemented on 2020-04-03 00:00:00\n", "In country FJI measure Partial lockdown was implemented on 2020-03-19 00:00:00\n", "In country FJI measure Checkpoints within the country was NEVER implemented\n", "In country FJI measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country FJI measure Curfews was implemented on 2020-03-30 00:00:00\n", "In country FJI measure Changes in prison-related policies was NEVER implemented\n", "In country FJI measure Public services closure was implemented on 2020-04-03 00:00:00\n", "In country FJI measure Military deployment was NEVER implemented\n", "In country FJI measure Full lockdown was NEVER implemented\n", "In country FJI measure Visa restrictions was implemented on 2020-03-07 00:00:00\n", "In country FJI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country FJI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country FJI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country FJI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country FJI measure Testing policy was NEVER implemented\n", "In country FJI measure Psychological assistance and medical social work was NEVER implemented\n", "In country FJI measure Mass population testing was NEVER implemented\n", "In country FJI measure testing policy was NEVER implemented\n", "In country FJI measure limit public gatherings was NEVER implemented\n", "In country FJI measure strengthening the public health system was NEVER implemented\n", "In country FJI measure Humanitarian exemptions was NEVER implemented\n", "In country FJI measure Complete border closure was NEVER implemented\n", "In country FJI measure curfews was NEVER implemented\n", "In country FJI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country FIN measure Health screenings in airports and border crossings was implemented on 2020-03-25 00:00:00\n", "In country FIN measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country FIN measure Awareness campaigns was implemented on 2020-04-03 00:00:00\n", "In country FIN measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country FIN measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country FIN measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country FIN measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country FIN measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country FIN measure Limit product imports/exports was NEVER implemented\n", "In country FIN measure Border checks was implemented on 2020-03-27 00:00:00\n", "In country FIN measure International flights suspension was implemented on 2020-03-07 00:00:00\n", "In country FIN measure Surveillance and monitoring was NEVER implemented\n", "In country FIN measure Other public health measures enforced was NEVER implemented\n", "In country FIN measure Domestic travel restrictions was implemented on 2020-03-28 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country FIN measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country FIN measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country FIN measure Partial lockdown was NEVER implemented\n", "In country FIN measure Checkpoints within the country was NEVER implemented\n", "In country FIN measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country FIN measure Curfews was NEVER implemented\n", "In country FIN measure Changes in prison-related policies was NEVER implemented\n", "In country FIN measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country FIN measure Military deployment was NEVER implemented\n", "In country FIN measure Full lockdown was NEVER implemented\n", "In country FIN measure Visa restrictions was NEVER implemented\n", "In country FIN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country FIN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country FIN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country FIN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country FIN measure Testing policy was NEVER implemented\n", "In country FIN measure Psychological assistance and medical social work was NEVER implemented\n", "In country FIN measure Mass population testing was NEVER implemented\n", "In country FIN measure testing policy was implemented on UNKNOWN DATE\n", "In country FIN measure limit public gatherings was NEVER implemented\n", "In country FIN measure strengthening the public health system was implemented on 2020-04-03 00:00:00\n", "In country FIN measure Humanitarian exemptions was NEVER implemented\n", "In country FIN measure Complete border closure was NEVER implemented\n", "In country FIN measure curfews was NEVER implemented\n", "In country FIN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country FRA measure Health screenings in airports and border crossings was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Awareness campaigns was NEVER implemented\n", "In country FRA measure Emergency administrative structures activated or established was implemented on 2020-02-13 00:00:00\n", "In country FRA measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country FRA measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Strengthening the public health system was implemented on 2020-03-27 00:00:00\n", "In country FRA measure Limit product imports/exports was NEVER implemented\n", "In country FRA measure Border checks was NEVER implemented\n", "In country FRA measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Surveillance and monitoring was implemented on 2020-04-06 00:00:00\n", "In country FRA measure Other public health measures enforced was NEVER implemented\n", "In country FRA measure Domestic travel restrictions was implemented on 2020-04-08 00:00:00\n", "In country FRA measure State of emergency declared was implemented on 2020-03-24 00:00:00\n", "In country FRA measure General recommendations was implemented on 2020-03-18 00:00:00\n", "In country FRA measure Partial lockdown was implemented on 2020-03-17 00:00:00\n", "In country FRA measure Checkpoints within the country was NEVER implemented\n", "In country FRA measure Economic measures was implemented on 2020-03-12 00:00:00\n", "In country FRA measure Curfews was NEVER implemented\n", "In country FRA measure Changes in prison-related policies was NEVER implemented\n", "In country FRA measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Military deployment was implemented on 2020-03-16 00:00:00\n", "In country FRA measure Full lockdown was NEVER implemented\n", "In country FRA measure Visa restrictions was NEVER implemented\n", "In country FRA measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-03-29 00:00:00\n", "In country FRA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country FRA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country FRA measure Amendments to funeral and burial regulations was implemented on 2020-04-09 00:00:00\n", "In country FRA measure Testing policy was NEVER implemented\n", "In country FRA measure Psychological assistance and medical social work was implemented on 2020-04-09 00:00:00\n", "In country FRA measure Mass population testing was NEVER implemented\n", "In country FRA measure testing policy was NEVER implemented\n", "In country FRA measure limit public gatherings was NEVER implemented\n", "In country FRA measure strengthening the public health system was NEVER implemented\n", "In country FRA measure Humanitarian exemptions was NEVER implemented\n", "In country FRA measure Complete border closure was NEVER implemented\n", "In country FRA measure curfews was NEVER implemented\n", "In country FRA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GAB measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country GAB measure Introduction of isolation and quarantine policies was implemented on 2020-03-07 00:00:00\n", "In country GAB measure Awareness campaigns was implemented on 2020-03-07 00:00:00\n", "In country GAB measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GAB measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country GAB measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country GAB measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country GAB measure Strengthening the public health system was NEVER implemented\n", "In country GAB measure Limit product imports/exports was NEVER implemented\n", "In country GAB measure Border checks was NEVER implemented\n", "In country GAB measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country GAB measure Surveillance and monitoring was NEVER implemented\n", "In country GAB measure Other public health measures enforced was NEVER implemented\n", "In country GAB measure Domestic travel restrictions was NEVER implemented\n", "In country GAB measure State of emergency declared was implemented on 2020-04-10 00:00:00\n", "In country GAB measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country GAB measure Partial lockdown was implemented on 2020-04-12 00:00:00\n", "In country GAB measure Checkpoints within the country was NEVER implemented\n", "In country GAB measure Economic measures was implemented on 2020-03-07 00:00:00\n", "In country GAB measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country GAB measure Changes in prison-related policies was implemented on 2020-04-10 00:00:00\n", "In country GAB measure Public services closure was implemented on 2020-03-07 00:00:00\n", "In country GAB measure Military deployment was NEVER implemented\n", "In country GAB measure Full lockdown was NEVER implemented\n", "In country GAB measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country GAB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GAB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GAB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GAB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GAB measure Testing policy was implemented on 2020-04-03 00:00:00\n", "In country GAB measure Psychological assistance and medical social work was NEVER implemented\n", "In country GAB measure Mass population testing was NEVER implemented\n", "In country GAB measure testing policy was NEVER implemented\n", "In country GAB measure limit public gatherings was NEVER implemented\n", "In country GAB measure strengthening the public health system was NEVER implemented\n", "In country GAB measure Humanitarian exemptions was NEVER implemented\n", "In country GAB measure Complete border closure was NEVER implemented\n", "In country GAB measure curfews was NEVER implemented\n", "In country GAB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GMB measure Health screenings in airports and border crossings was implemented on 2020-02-07 00:00:00\n", "In country GMB measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country GMB measure Awareness campaigns was NEVER implemented\n", "In country GMB measure Emergency administrative structures activated or established was implemented on 2020-02-01 00:00:00\n", "In country GMB measure Limit public gatherings was implemented on 2020-04-01 00:00:00\n", "In country GMB measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country GMB measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country GMB measure Strengthening the public health system was NEVER implemented\n", "In country GMB measure Limit product imports/exports was NEVER implemented\n", "In country GMB measure Border checks was NEVER implemented\n", "In country GMB measure International flights suspension was implemented on 2020-03-24 00:00:00\n", "In country GMB measure Surveillance and monitoring was NEVER implemented\n", "In country GMB measure Other public health measures enforced was NEVER implemented\n", "In country GMB measure Domestic travel restrictions was NEVER implemented\n", "In country GMB measure State of emergency declared was implemented on 2020-04-01 00:00:00\n", "In country GMB measure General recommendations was implemented on UNKNOWN DATE\n", "In country GMB measure Partial lockdown was NEVER implemented\n", "In country GMB measure Checkpoints within the country was NEVER implemented\n", "In country GMB measure Economic measures was NEVER implemented\n", "In country GMB measure Curfews was NEVER implemented\n", "In country GMB measure Changes in prison-related policies was NEVER implemented\n", "In country GMB measure Public services closure was implemented on 2020-04-01 00:00:00\n", "In country GMB measure Military deployment was NEVER implemented\n", "In country GMB measure Full lockdown was NEVER implemented\n", "In country GMB measure Visa restrictions was NEVER implemented\n", "In country GMB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GMB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GMB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GMB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GMB measure Testing policy was NEVER implemented\n", "In country GMB measure Psychological assistance and medical social work was NEVER implemented\n", "In country GMB measure Mass population testing was NEVER implemented\n", "In country GMB measure testing policy was NEVER implemented\n", "In country GMB measure limit public gatherings was NEVER implemented\n", "In country GMB measure strengthening the public health system was NEVER implemented\n", "In country GMB measure Humanitarian exemptions was NEVER implemented\n", "In country GMB measure Complete border closure was NEVER implemented\n", "In country GMB measure curfews was NEVER implemented\n", "In country GMB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GEO measure Health screenings in airports and border crossings was NEVER implemented\n", "In country GEO measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country GEO measure Awareness campaigns was NEVER implemented\n", "In country GEO measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GEO measure Limit public gatherings was implemented on 2020-03-23 00:00:00\n", "In country GEO measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country GEO measure Schools closure was NEVER implemented\n", "In country GEO measure Strengthening the public health system was NEVER implemented\n", "In country GEO measure Limit product imports/exports was NEVER implemented\n", "In country GEO measure Border checks was NEVER implemented\n", "In country GEO measure International flights suspension was implemented on 2020-03-21 00:00:00\n", "In country GEO measure Surveillance and monitoring was NEVER implemented\n", "In country GEO measure Other public health measures enforced was NEVER implemented\n", "In country GEO measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country GEO measure State of emergency declared was implemented on 2020-03-23 00:00:00\n", "In country GEO measure General recommendations was NEVER implemented\n", "In country GEO measure Partial lockdown was implemented on 2020-03-23 00:00:00\n", "In country GEO measure Checkpoints within the country was NEVER implemented\n", "In country GEO measure Economic measures was implemented on 2020-04-03 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country GEO measure Curfews was implemented on 2020-03-31 00:00:00\n", "In country GEO measure Changes in prison-related policies was NEVER implemented\n", "In country GEO measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country GEO measure Military deployment was NEVER implemented\n", "In country GEO measure Full lockdown was implemented on 2020-03-30 00:00:00\n", "In country GEO measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country GEO measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GEO measure Additional health/documents requirements upon arrival was implemented on 2020-03-16 00:00:00\n", "In country GEO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GEO measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GEO measure Testing policy was NEVER implemented\n", "In country GEO measure Psychological assistance and medical social work was NEVER implemented\n", "In country GEO measure Mass population testing was NEVER implemented\n", "In country GEO measure testing policy was NEVER implemented\n", "In country GEO measure limit public gatherings was NEVER implemented\n", "In country GEO measure strengthening the public health system was NEVER implemented\n", "In country GEO measure Humanitarian exemptions was NEVER implemented\n", "In country GEO measure Complete border closure was NEVER implemented\n", "In country GEO measure curfews was NEVER implemented\n", "In country GEO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country DEU measure Health screenings in airports and border crossings was NEVER implemented\n", "In country DEU measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country DEU measure Awareness campaigns was implemented on 2020-02-06 00:00:00\n", "In country DEU measure Emergency administrative structures activated or established was implemented on 2020-03-30 00:00:00\n", "In country DEU measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country DEU measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country DEU measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country DEU measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country DEU measure Limit product imports/exports was implemented on 2020-03-04 00:00:00\n", "In country DEU measure Border checks was implemented on 2020-03-10 00:00:00\n", "In country DEU measure International flights suspension was NEVER implemented\n", "In country DEU measure Surveillance and monitoring was NEVER implemented\n", "In country DEU measure Other public health measures enforced was NEVER implemented\n", "In country DEU measure Domestic travel restrictions was NEVER implemented\n", "In country DEU measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country DEU measure General recommendations was implemented on 2020-03-30 00:00:00\n", "In country DEU measure Partial lockdown was implemented on 2020-03-21 00:00:00\n", "In country DEU measure Checkpoints within the country was NEVER implemented\n", "In country DEU measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country DEU measure Curfews was NEVER implemented\n", "In country DEU measure Changes in prison-related policies was implemented on 2020-03-19 00:00:00\n", "In country DEU measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country DEU measure Military deployment was implemented on 2020-04-03 00:00:00\n", "In country DEU measure Full lockdown was NEVER implemented\n", "In country DEU measure Visa restrictions was implemented on 2020-04-09 00:00:00\n", "In country DEU measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country DEU measure Additional health/documents requirements upon arrival was implemented on 2020-02-29 00:00:00\n", "In country DEU measure Requirement to wear protective gear in public was NEVER implemented\n", "In country DEU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country DEU measure Testing policy was NEVER implemented\n", "In country DEU measure Psychological assistance and medical social work was NEVER implemented\n", "In country DEU measure Mass population testing was NEVER implemented\n", "In country DEU measure testing policy was NEVER implemented\n", "In country DEU measure limit public gatherings was NEVER implemented\n", "In country DEU measure strengthening the public health system was NEVER implemented\n", "In country DEU measure Humanitarian exemptions was NEVER implemented\n", "In country DEU measure Complete border closure was NEVER implemented\n", "In country DEU measure curfews was NEVER implemented\n", "In country DEU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GHA measure Health screenings in airports and border crossings was implemented on 2020-03-21 00:00:00\n", "In country GHA measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country GHA measure Awareness campaigns was NEVER implemented\n", "In country GHA measure Emergency administrative structures activated or established was implemented on 2020-03-28 00:00:00\n", "In country GHA measure Limit public gatherings was implemented on 2020-04-13 00:00:00\n", "In country GHA measure Border closure was implemented on 2020-03-23 00:00:00\n", "In country GHA measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country GHA measure Strengthening the public health system was implemented on 2020-03-21 00:00:00\n", "In country GHA measure Limit product imports/exports was NEVER implemented\n", "In country GHA measure Border checks was NEVER implemented\n", "In country GHA measure International flights suspension was implemented on 2020-03-15 00:00:00\n", "In country GHA measure Surveillance and monitoring was NEVER implemented\n", "In country GHA measure Other public health measures enforced was NEVER implemented\n", "In country GHA measure Domestic travel restrictions was NEVER implemented\n", "In country GHA measure State of emergency declared was NEVER implemented\n", "In country GHA measure General recommendations was implemented on 2020-03-06 00:00:00\n", "In country GHA measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country GHA measure Checkpoints within the country was NEVER implemented\n", "In country GHA measure Economic measures was implemented on 2020-03-28 00:00:00\n", "In country GHA measure Curfews was NEVER implemented\n", "In country GHA measure Changes in prison-related policies was NEVER implemented\n", "In country GHA measure Public services closure was NEVER implemented\n", "In country GHA measure Military deployment was NEVER implemented\n", "In country GHA measure Full lockdown was NEVER implemented\n", "In country GHA measure Visa restrictions was implemented on 2020-03-17 00:00:00\n", "In country GHA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GHA measure Additional health/documents requirements upon arrival was implemented on 2020-03-15 00:00:00\n", "In country GHA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GHA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GHA measure Testing policy was implemented on 2020-03-28 00:00:00\n", "In country GHA measure Psychological assistance and medical social work was NEVER implemented\n", "In country GHA measure Mass population testing was NEVER implemented\n", "In country GHA measure testing policy was NEVER implemented\n", "In country GHA measure limit public gatherings was NEVER implemented\n", "In country GHA measure strengthening the public health system was NEVER implemented\n", "In country GHA measure Humanitarian exemptions was NEVER implemented\n", "In country GHA measure Complete border closure was NEVER implemented\n", "In country GHA measure curfews was NEVER implemented\n", "In country GHA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GRC measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country GRC measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country GRC measure Awareness campaigns was implemented on 2020-03-09 00:00:00\n", "In country GRC measure Emergency administrative structures activated or established was implemented on 2020-03-18 00:00:00\n", "In country GRC measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country GRC measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country GRC measure Schools closure was implemented on 2020-03-11 00:00:00\n", "In country GRC measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country GRC measure Limit product imports/exports was NEVER implemented\n", "In country GRC measure Border checks was NEVER implemented\n", "In country GRC measure International flights suspension was implemented on 2020-03-09 00:00:00\n", "In country GRC measure Surveillance and monitoring was NEVER implemented\n", "In country GRC measure Other public health measures enforced was NEVER implemented\n", "In country GRC measure Domestic travel restrictions was NEVER implemented\n", "In country GRC measure State of emergency declared was NEVER implemented\n", "In country GRC measure General recommendations was NEVER implemented\n", "In country GRC measure Partial lockdown was implemented on 2020-03-23 00:00:00\n", "In country GRC measure Checkpoints within the country was NEVER implemented\n", "In country GRC measure Economic measures was implemented on 2020-03-13 00:00:00\n", "In country GRC measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country GRC measure Changes in prison-related policies was NEVER implemented\n", "In country GRC measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country GRC measure Military deployment was NEVER implemented\n", "In country GRC measure Full lockdown was NEVER implemented\n", "In country GRC measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country GRC measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-03-17 00:00:00\n", "In country GRC measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GRC measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GRC measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GRC measure Testing policy was NEVER implemented\n", "In country GRC measure Psychological assistance and medical social work was NEVER implemented\n", "In country GRC measure Mass population testing was NEVER implemented\n", "In country GRC measure testing policy was NEVER implemented\n", "In country GRC measure limit public gatherings was NEVER implemented\n", "In country GRC measure strengthening the public health system was NEVER implemented\n", "In country GRC measure Humanitarian exemptions was NEVER implemented\n", "In country GRC measure Complete border closure was NEVER implemented\n", "In country GRC measure curfews was NEVER implemented\n", "In country GRC measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GRD measure Health screenings in airports and border crossings was implemented on 2020-03-19 00:00:00\n", "In country GRD measure Introduction of isolation and quarantine policies was implemented on 2020-03-18 00:00:00\n", "In country GRD measure Awareness campaigns was NEVER implemented\n", "In country GRD measure Emergency administrative structures activated or established was implemented on 2020-03-04 00:00:00\n", "In country GRD measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country GRD measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country GRD measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country GRD measure Strengthening the public health system was implemented on 2020-03-01 00:00:00\n", "In country GRD measure Limit product imports/exports was NEVER implemented\n", "In country GRD measure Border checks was NEVER implemented\n", "In country GRD measure International flights suspension was NEVER implemented\n", "In country GRD measure Surveillance and monitoring was NEVER implemented\n", "In country GRD measure Other public health measures enforced was NEVER implemented\n", "In country GRD measure Domestic travel restrictions was NEVER implemented\n", "In country GRD measure State of emergency declared was NEVER implemented\n", "In country GRD measure General recommendations was implemented on 2020-03-03 00:00:00\n", "In country GRD measure Partial lockdown was NEVER implemented\n", "In country GRD measure Checkpoints within the country was NEVER implemented\n", "In country GRD measure Economic measures was implemented on 2020-03-22 00:00:00\n", "In country GRD measure Curfews was NEVER implemented\n", "In country GRD measure Changes in prison-related policies was NEVER implemented\n", "In country GRD measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country GRD measure Military deployment was NEVER implemented\n", "In country GRD measure Full lockdown was NEVER implemented\n", "In country GRD measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country GRD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GRD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GRD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GRD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GRD measure Testing policy was NEVER implemented\n", "In country GRD measure Psychological assistance and medical social work was NEVER implemented\n", "In country GRD measure Mass population testing was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country GRD measure testing policy was NEVER implemented\n", "In country GRD measure limit public gatherings was NEVER implemented\n", "In country GRD measure strengthening the public health system was NEVER implemented\n", "In country GRD measure Humanitarian exemptions was NEVER implemented\n", "In country GRD measure Complete border closure was NEVER implemented\n", "In country GRD measure curfews was NEVER implemented\n", "In country GRD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GTM measure Health screenings in airports and border crossings was implemented on 2020-03-12 00:00:00\n", "In country GTM measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country GTM measure Awareness campaigns was NEVER implemented\n", "In country GTM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GTM measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country GTM measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country GTM measure Schools closure was implemented on 2020-03-14 00:00:00\n", "In country GTM measure Strengthening the public health system was NEVER implemented\n", "In country GTM measure Limit product imports/exports was NEVER implemented\n", "In country GTM measure Border checks was NEVER implemented\n", "In country GTM measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country GTM measure Surveillance and monitoring was implemented on 2020-03-22 00:00:00\n", "In country GTM measure Other public health measures enforced was NEVER implemented\n", "In country GTM measure Domestic travel restrictions was implemented on 2020-04-05 00:00:00\n", "In country GTM measure State of emergency declared was NEVER implemented\n", "In country GTM measure General recommendations was NEVER implemented\n", "In country GTM measure Partial lockdown was NEVER implemented\n", "In country GTM measure Checkpoints within the country was NEVER implemented\n", "In country GTM measure Economic measures was implemented on 2020-03-30 00:00:00\n", "In country GTM measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country GTM measure Changes in prison-related policies was NEVER implemented\n", "In country GTM measure Public services closure was NEVER implemented\n", "In country GTM measure Military deployment was NEVER implemented\n", "In country GTM measure Full lockdown was NEVER implemented\n", "In country GTM measure Visa restrictions was implemented on 2020-03-12 00:00:00\n", "In country GTM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GTM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GTM measure Requirement to wear protective gear in public was implemented on 2020-04-13 00:00:00\n", "In country GTM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GTM measure Testing policy was NEVER implemented\n", "In country GTM measure Psychological assistance and medical social work was NEVER implemented\n", "In country GTM measure Mass population testing was NEVER implemented\n", "In country GTM measure testing policy was NEVER implemented\n", "In country GTM measure limit public gatherings was NEVER implemented\n", "In country GTM measure strengthening the public health system was NEVER implemented\n", "In country GTM measure Humanitarian exemptions was NEVER implemented\n", "In country GTM measure Complete border closure was NEVER implemented\n", "In country GTM measure curfews was NEVER implemented\n", "In country GTM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GIN measure Health screenings in airports and border crossings was implemented on 2020-02-29 00:00:00\n", "In country GIN measure Introduction of isolation and quarantine policies was implemented on 2020-03-18 00:00:00\n", "In country GIN measure Awareness campaigns was implemented on 2020-03-31 00:00:00\n", "In country GIN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GIN measure Limit public gatherings was implemented on 2020-03-26 00:00:00\n", "In country GIN measure Border closure was implemented on 2020-03-26 00:00:00\n", "In country GIN measure Schools closure was implemented on 2020-03-26 00:00:00\n", "In country GIN measure Strengthening the public health system was implemented on 2020-04-02 00:00:00\n", "In country GIN measure Limit product imports/exports was NEVER implemented\n", "In country GIN measure Border checks was NEVER implemented\n", "In country GIN measure International flights suspension was implemented on 2020-03-21 00:00:00\n", "In country GIN measure Surveillance and monitoring was NEVER implemented\n", "In country GIN measure Other public health measures enforced was NEVER implemented\n", "In country GIN measure Domestic travel restrictions was implemented on 2020-03-30 00:00:00\n", "In country GIN measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country GIN measure General recommendations was NEVER implemented\n", "In country GIN measure Partial lockdown was NEVER implemented\n", "In country GIN measure Checkpoints within the country was NEVER implemented\n", "In country GIN measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country GIN measure Curfews was implemented on 2020-03-30 00:00:00\n", "In country GIN measure Changes in prison-related policies was NEVER implemented\n", "In country GIN measure Public services closure was NEVER implemented\n", "In country GIN measure Military deployment was NEVER implemented\n", "In country GIN measure Full lockdown was NEVER implemented\n", "In country GIN measure Visa restrictions was NEVER implemented\n", "In country GIN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GIN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GIN measure Requirement to wear protective gear in public was implemented on 2020-03-31 00:00:00\n", "In country GIN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GIN measure Testing policy was NEVER implemented\n", "In country GIN measure Psychological assistance and medical social work was NEVER implemented\n", "In country GIN measure Mass population testing was NEVER implemented\n", "In country GIN measure testing policy was NEVER implemented\n", "In country GIN measure limit public gatherings was NEVER implemented\n", "In country GIN measure strengthening the public health system was NEVER implemented\n", "In country GIN measure Humanitarian exemptions was NEVER implemented\n", "In country GIN measure Complete border closure was NEVER implemented\n", "In country GIN measure curfews was NEVER implemented\n", "In country GIN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GNB measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country GNB measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country GNB measure Awareness campaigns was implemented on 2020-04-03 00:00:00\n", "In country GNB measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GNB measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country GNB measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country GNB measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country GNB measure Strengthening the public health system was NEVER implemented\n", "In country GNB measure Limit product imports/exports was NEVER implemented\n", "In country GNB measure Border checks was NEVER implemented\n", "In country GNB measure International flights suspension was implemented on 2020-03-11 00:00:00\n", "In country GNB measure Surveillance and monitoring was NEVER implemented\n", "In country GNB measure Other public health measures enforced was NEVER implemented\n", "In country GNB measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country GNB measure State of emergency declared was implemented on 2020-03-27 00:00:00\n", "In country GNB measure General recommendations was NEVER implemented\n", "In country GNB measure Partial lockdown was NEVER implemented\n", "In country GNB measure Checkpoints within the country was NEVER implemented\n", "In country GNB measure Economic measures was NEVER implemented\n", "In country GNB measure Curfews was implemented on 2020-03-28 00:00:00\n", "In country GNB measure Changes in prison-related policies was NEVER implemented\n", "In country GNB measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country GNB measure Military deployment was NEVER implemented\n", "In country GNB measure Full lockdown was NEVER implemented\n", "In country GNB measure Visa restrictions was NEVER implemented\n", "In country GNB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GNB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GNB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GNB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GNB measure Testing policy was NEVER implemented\n", "In country GNB measure Psychological assistance and medical social work was NEVER implemented\n", "In country GNB measure Mass population testing was NEVER implemented\n", "In country GNB measure testing policy was NEVER implemented\n", "In country GNB measure limit public gatherings was NEVER implemented\n", "In country GNB measure strengthening the public health system was NEVER implemented\n", "In country GNB measure Humanitarian exemptions was NEVER implemented\n", "In country GNB measure Complete border closure was NEVER implemented\n", "In country GNB measure curfews was NEVER implemented\n", "In country GNB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GUY measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country GUY measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country GUY measure Awareness campaigns was NEVER implemented\n", "In country GUY measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GUY measure Limit public gatherings was NEVER implemented\n", "In country GUY measure Border closure was NEVER implemented\n", "In country GUY measure Schools closure was NEVER implemented\n", "In country GUY measure Strengthening the public health system was NEVER implemented\n", "In country GUY measure Limit product imports/exports was NEVER implemented\n", "In country GUY measure Border checks was NEVER implemented\n", "In country GUY measure International flights suspension was NEVER implemented\n", "In country GUY measure Surveillance and monitoring was NEVER implemented\n", "In country GUY measure Other public health measures enforced was NEVER implemented\n", "In country GUY measure Domestic travel restrictions was NEVER implemented\n", "In country GUY measure State of emergency declared was NEVER implemented\n", "In country GUY measure General recommendations was NEVER implemented\n", "In country GUY measure Partial lockdown was NEVER implemented\n", "In country GUY measure Checkpoints within the country was NEVER implemented\n", "In country GUY measure Economic measures was NEVER implemented\n", "In country GUY measure Curfews was NEVER implemented\n", "In country GUY measure Changes in prison-related policies was NEVER implemented\n", "In country GUY measure Public services closure was NEVER implemented\n", "In country GUY measure Military deployment was NEVER implemented\n", "In country GUY measure Full lockdown was NEVER implemented\n", "In country GUY measure Visa restrictions was NEVER implemented\n", "In country GUY measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GUY measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GUY measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GUY measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GUY measure Testing policy was NEVER implemented\n", "In country GUY measure Psychological assistance and medical social work was NEVER implemented\n", "In country GUY measure Mass population testing was NEVER implemented\n", "In country GUY measure testing policy was NEVER implemented\n", "In country GUY measure limit public gatherings was NEVER implemented\n", "In country GUY measure strengthening the public health system was NEVER implemented\n", "In country GUY measure Humanitarian exemptions was NEVER implemented\n", "In country GUY measure Complete border closure was NEVER implemented\n", "In country GUY measure curfews was NEVER implemented\n", "In country GUY measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country HTI measure Health screenings in airports and border crossings was implemented on 2020-03-06 00:00:00\n", "In country HTI measure Introduction of isolation and quarantine policies was implemented on 2020-03-19 00:00:00\n", "In country HTI measure Awareness campaigns was NEVER implemented\n", "In country HTI measure Emergency administrative structures activated or established was implemented on 2020-04-14 00:00:00\n", "In country HTI measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country HTI measure Border closure was implemented on 2020-03-20 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country HTI measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country HTI measure Strengthening the public health system was NEVER implemented\n", "In country HTI measure Limit product imports/exports was NEVER implemented\n", "In country HTI measure Border checks was NEVER implemented\n", "In country HTI measure International flights suspension was NEVER implemented\n", "In country HTI measure Surveillance and monitoring was NEVER implemented\n", "In country HTI measure Other public health measures enforced was NEVER implemented\n", "In country HTI measure Domestic travel restrictions was NEVER implemented\n", "In country HTI measure State of emergency declared was implemented on 2020-03-19 00:00:00\n", "In country HTI measure General recommendations was NEVER implemented\n", "In country HTI measure Partial lockdown was implemented on 2020-03-20 00:00:00\n", "In country HTI measure Checkpoints within the country was NEVER implemented\n", "In country HTI measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country HTI measure Curfews was implemented on 2020-03-20 00:00:00\n", "In country HTI measure Changes in prison-related policies was implemented on 2020-03-25 00:00:00\n", "In country HTI measure Public services closure was implemented on 2020-03-25 00:00:00\n", "In country HTI measure Military deployment was NEVER implemented\n", "In country HTI measure Full lockdown was implemented on 2020-03-25 00:00:00\n", "In country HTI measure Visa restrictions was NEVER implemented\n", "In country HTI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country HTI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country HTI measure Requirement to wear protective gear in public was implemented on 2020-04-06 00:00:00\n", "In country HTI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country HTI measure Testing policy was NEVER implemented\n", "In country HTI measure Psychological assistance and medical social work was NEVER implemented\n", "In country HTI measure Mass population testing was NEVER implemented\n", "In country HTI measure testing policy was NEVER implemented\n", "In country HTI measure limit public gatherings was NEVER implemented\n", "In country HTI measure strengthening the public health system was NEVER implemented\n", "In country HTI measure Humanitarian exemptions was NEVER implemented\n", "In country HTI measure Complete border closure was NEVER implemented\n", "In country HTI measure curfews was NEVER implemented\n", "In country HTI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country HND measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country HND measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country HND measure Awareness campaigns was implemented on 2020-03-29 00:00:00\n", "In country HND measure Emergency administrative structures activated or established was NEVER implemented\n", "In country HND measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country HND measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country HND measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country HND measure Strengthening the public health system was NEVER implemented\n", "In country HND measure Limit product imports/exports was NEVER implemented\n", "In country HND measure Border checks was implemented on 2020-03-11 00:00:00\n", "In country HND measure International flights suspension was implemented on 2020-03-29 00:00:00\n", "In country HND measure Surveillance and monitoring was NEVER implemented\n", "In country HND measure Other public health measures enforced was NEVER implemented\n", "In country HND measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country HND measure State of emergency declared was NEVER implemented\n", "In country HND measure General recommendations was implemented on 2020-03-29 00:00:00\n", "In country HND measure Partial lockdown was NEVER implemented\n", "In country HND measure Checkpoints within the country was NEVER implemented\n", "In country HND measure Economic measures was implemented on 2020-03-29 00:00:00\n", "In country HND measure Curfews was implemented on 2020-03-16 00:00:00\n", "In country HND measure Changes in prison-related policies was NEVER implemented\n", "In country HND measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country HND measure Military deployment was NEVER implemented\n", "In country HND measure Full lockdown was implemented on 2020-04-06 00:00:00\n", "In country HND measure Visa restrictions was NEVER implemented\n", "In country HND measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country HND measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country HND measure Requirement to wear protective gear in public was implemented on 2020-03-29 00:00:00\n", "In country HND measure Amendments to funeral and burial regulations was implemented on 2020-04-03 00:00:00\n", "In country HND measure Testing policy was NEVER implemented\n", "In country HND measure Psychological assistance and medical social work was NEVER implemented\n", "In country HND measure Mass population testing was NEVER implemented\n", "In country HND measure testing policy was NEVER implemented\n", "In country HND measure limit public gatherings was NEVER implemented\n", "In country HND measure strengthening the public health system was NEVER implemented\n", "In country HND measure Humanitarian exemptions was NEVER implemented\n", "In country HND measure Complete border closure was NEVER implemented\n", "In country HND measure curfews was NEVER implemented\n", "In country HND measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country HUN measure Health screenings in airports and border crossings was implemented on 2020-02-03 00:00:00\n", "In country HUN measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country HUN measure Awareness campaigns was implemented on 2020-02-03 00:00:00\n", "In country HUN measure Emergency administrative structures activated or established was implemented on 2020-02-04 00:00:00\n", "In country HUN measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country HUN measure Border closure was implemented on 2020-03-02 00:00:00\n", "In country HUN measure Schools closure was implemented on 2020-03-14 00:00:00\n", "In country HUN measure Strengthening the public health system was implemented on 2020-03-05 00:00:00\n", "In country HUN measure Limit product imports/exports was NEVER implemented\n", "In country HUN measure Border checks was implemented on 2020-03-13 00:00:00\n", "In country HUN measure International flights suspension was implemented on 2020-03-09 00:00:00\n", "In country HUN measure Surveillance and monitoring was implemented on 2020-03-17 00:00:00\n", "In country HUN measure Other public health measures enforced was NEVER implemented\n", "In country HUN measure Domestic travel restrictions was NEVER implemented\n", "In country HUN measure State of emergency declared was implemented on 2020-03-11 00:00:00\n", "In country HUN measure General recommendations was implemented on 2020-02-28 00:00:00\n", "In country HUN measure Partial lockdown was implemented on 2020-03-17 00:00:00\n", "In country HUN measure Checkpoints within the country was NEVER implemented\n", "In country HUN measure Economic measures was implemented on 2020-03-11 00:00:00\n", "In country HUN measure Curfews was NEVER implemented\n", "In country HUN measure Changes in prison-related policies was NEVER implemented\n", "In country HUN measure Public services closure was implemented on 2020-03-09 00:00:00\n", "In country HUN measure Military deployment was implemented on 2020-03-12 00:00:00\n", "In country HUN measure Full lockdown was NEVER implemented\n", "In country HUN measure Visa restrictions was implemented on 2020-03-11 00:00:00\n", "In country HUN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country HUN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country HUN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country HUN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country HUN measure Testing policy was NEVER implemented\n", "In country HUN measure Psychological assistance and medical social work was NEVER implemented\n", "In country HUN measure Mass population testing was implemented on 2020-03-03 00:00:00\n", "In country HUN measure testing policy was NEVER implemented\n", "In country HUN measure limit public gatherings was NEVER implemented\n", "In country HUN measure strengthening the public health system was NEVER implemented\n", "In country HUN measure Humanitarian exemptions was NEVER implemented\n", "In country HUN measure Complete border closure was NEVER implemented\n", "In country HUN measure curfews was NEVER implemented\n", "In country HUN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ISL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ISL measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country ISL measure Awareness campaigns was implemented on 2020-02-28 00:00:00\n", "In country ISL measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ISL measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ISL measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country ISL measure Schools closure was implemented on 2020-04-06 00:00:00\n", "In country ISL measure Strengthening the public health system was implemented on 2020-03-23 00:00:00\n", "In country ISL measure Limit product imports/exports was NEVER implemented\n", "In country ISL measure Border checks was NEVER implemented\n", "In country ISL measure International flights suspension was NEVER implemented\n", "In country ISL measure Surveillance and monitoring was implemented on 2020-04-01 00:00:00\n", "In country ISL measure Other public health measures enforced was NEVER implemented\n", "In country ISL measure Domestic travel restrictions was NEVER implemented\n", "In country ISL measure State of emergency declared was implemented on 2020-03-06 00:00:00\n", "In country ISL measure General recommendations was implemented on UNKNOWN DATE\n", "In country ISL measure Partial lockdown was NEVER implemented\n", "In country ISL measure Checkpoints within the country was NEVER implemented\n", "In country ISL measure Economic measures was implemented on 2020-03-21 00:00:00\n", "In country ISL measure Curfews was NEVER implemented\n", "In country ISL measure Changes in prison-related policies was NEVER implemented\n", "In country ISL measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country ISL measure Military deployment was NEVER implemented\n", "In country ISL measure Full lockdown was NEVER implemented\n", "In country ISL measure Visa restrictions was NEVER implemented\n", "In country ISL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ISL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ISL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ISL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ISL measure Testing policy was NEVER implemented\n", "In country ISL measure Psychological assistance and medical social work was NEVER implemented\n", "In country ISL measure Mass population testing was implemented on 2020-03-13 00:00:00\n", "In country ISL measure testing policy was NEVER implemented\n", "In country ISL measure limit public gatherings was NEVER implemented\n", "In country ISL measure strengthening the public health system was NEVER implemented\n", "In country ISL measure Humanitarian exemptions was NEVER implemented\n", "In country ISL measure Complete border closure was NEVER implemented\n", "In country ISL measure curfews was NEVER implemented\n", "In country ISL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country IND measure Health screenings in airports and border crossings was implemented on 2020-03-05 00:00:00\n", "In country IND measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country IND measure Awareness campaigns was NEVER implemented\n", "In country IND measure Emergency administrative structures activated or established was implemented on 2020-03-14 00:00:00\n", "In country IND measure Limit public gatherings was implemented on 2020-03-05 00:00:00\n", "In country IND measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country IND measure Schools closure was implemented on UNKNOWN DATE\n", "In country IND measure Strengthening the public health system was implemented on 2020-01-25 00:00:00\n", "In country IND measure Limit product imports/exports was NEVER implemented\n", "In country IND measure Border checks was implemented on 2020-03-11 00:00:00\n", "In country IND measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country IND measure Surveillance and monitoring was NEVER implemented\n", "In country IND measure Other public health measures enforced was NEVER implemented\n", "In country IND measure Domestic travel restrictions was NEVER implemented\n", "In country IND measure State of emergency declared was NEVER implemented\n", "In country IND measure General recommendations was implemented on 2020-03-10 00:00:00\n", "In country IND measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country IND measure Checkpoints within the country was NEVER implemented\n", "In country IND measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country IND measure Curfews was NEVER implemented\n", "In country IND measure Changes in prison-related policies was NEVER implemented\n", "In country IND measure Public services closure was NEVER implemented\n", "In country IND measure Military deployment was NEVER implemented\n", "In country IND measure Full lockdown was NEVER implemented\n", "In country IND measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country IND measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country IND measure Additional health/documents requirements upon arrival was implemented on 2020-03-10 00:00:00\n", "In country IND measure Requirement to wear protective gear in public was NEVER implemented\n", "In country IND measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country IND measure Testing policy was implemented on 2020-03-20 00:00:00\n", "In country IND measure Psychological assistance and medical social work was NEVER implemented\n", "In country IND measure Mass population testing was NEVER implemented\n", "In country IND measure testing policy was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country IND measure limit public gatherings was NEVER implemented\n", "In country IND measure strengthening the public health system was NEVER implemented\n", "In country IND measure Humanitarian exemptions was NEVER implemented\n", "In country IND measure Complete border closure was NEVER implemented\n", "In country IND measure curfews was NEVER implemented\n", "In country IND measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country IDN measure Health screenings in airports and border crossings was implemented on 2020-03-08 00:00:00\n", "In country IDN measure Introduction of isolation and quarantine policies was implemented on 2020-02-02 00:00:00\n", "In country IDN measure Awareness campaigns was implemented on 2020-01-26 00:00:00\n", "In country IDN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country IDN measure Limit public gatherings was NEVER implemented\n", "In country IDN measure Border closure was NEVER implemented\n", "In country IDN measure Schools closure was NEVER implemented\n", "In country IDN measure Strengthening the public health system was implemented on 2020-03-30 00:00:00\n", "In country IDN measure Limit product imports/exports was NEVER implemented\n", "In country IDN measure Border checks was NEVER implemented\n", "In country IDN measure International flights suspension was implemented on 2020-02-05 00:00:00\n", "In country IDN measure Surveillance and monitoring was implemented on 2020-03-16 00:00:00\n", "In country IDN measure Other public health measures enforced was NEVER implemented\n", "In country IDN measure Domestic travel restrictions was NEVER implemented\n", "In country IDN measure State of emergency declared was NEVER implemented\n", "In country IDN measure General recommendations was implemented on 2020-01-26 00:00:00\n", "In country IDN measure Partial lockdown was NEVER implemented\n", "In country IDN measure Checkpoints within the country was NEVER implemented\n", "In country IDN measure Economic measures was NEVER implemented\n", "In country IDN measure Curfews was NEVER implemented\n", "In country IDN measure Changes in prison-related policies was NEVER implemented\n", "In country IDN measure Public services closure was NEVER implemented\n", "In country IDN measure Military deployment was NEVER implemented\n", "In country IDN measure Full lockdown was NEVER implemented\n", "In country IDN measure Visa restrictions was implemented on 2020-03-08 00:00:00\n", "In country IDN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country IDN measure Additional health/documents requirements upon arrival was implemented on 2020-03-08 00:00:00\n", "In country IDN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country IDN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country IDN measure Testing policy was implemented on 2020-03-16 00:00:00\n", "In country IDN measure Psychological assistance and medical social work was NEVER implemented\n", "In country IDN measure Mass population testing was NEVER implemented\n", "In country IDN measure testing policy was NEVER implemented\n", "In country IDN measure limit public gatherings was NEVER implemented\n", "In country IDN measure strengthening the public health system was NEVER implemented\n", "In country IDN measure Humanitarian exemptions was NEVER implemented\n", "In country IDN measure Complete border closure was NEVER implemented\n", "In country IDN measure curfews was NEVER implemented\n", "In country IDN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country IRN measure Health screenings in airports and border crossings was implemented on 2020-01-31 00:00:00\n", "In country IRN measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country IRN measure Awareness campaigns was implemented on 2020-03-05 00:00:00\n", "In country IRN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country IRN measure Limit public gatherings was NEVER implemented\n", "In country IRN measure Border closure was NEVER implemented\n", "In country IRN measure Schools closure was implemented on 2020-02-27 00:00:00\n", "In country IRN measure Strengthening the public health system was implemented on 2020-01-28 00:00:00\n", "In country IRN measure Limit product imports/exports was NEVER implemented\n", "In country IRN measure Border checks was implemented on 2020-02-27 00:00:00\n", "In country IRN measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country IRN measure Surveillance and monitoring was NEVER implemented\n", "In country IRN measure Other public health measures enforced was NEVER implemented\n", "In country IRN measure Domestic travel restrictions was NEVER implemented\n", "In country IRN measure State of emergency declared was NEVER implemented\n", "In country IRN measure General recommendations was implemented on 2020-01-28 00:00:00\n", "In country IRN measure Partial lockdown was implemented on 2020-01-31 00:00:00\n", "In country IRN measure Checkpoints within the country was NEVER implemented\n", "In country IRN measure Economic measures was implemented on 2020-02-29 00:00:00\n", "In country IRN measure Curfews was NEVER implemented\n", "In country IRN measure Changes in prison-related policies was implemented on 2020-03-08 00:00:00\n", "In country IRN measure Public services closure was NEVER implemented\n", "In country IRN measure Military deployment was NEVER implemented\n", "In country IRN measure Full lockdown was NEVER implemented\n", "In country IRN measure Visa restrictions was implemented on 2020-01-31 00:00:00\n", "In country IRN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country IRN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country IRN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country IRN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country IRN measure Testing policy was NEVER implemented\n", "In country IRN measure Psychological assistance and medical social work was NEVER implemented\n", "In country IRN measure Mass population testing was NEVER implemented\n", "In country IRN measure testing policy was NEVER implemented\n", "In country IRN measure limit public gatherings was NEVER implemented\n", "In country IRN measure strengthening the public health system was NEVER implemented\n", "In country IRN measure Humanitarian exemptions was NEVER implemented\n", "In country IRN measure Complete border closure was NEVER implemented\n", "In country IRN measure curfews was NEVER implemented\n", "In country IRN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country IRQ measure Health screenings in airports and border crossings was implemented on 2020-03-17 00:00:00\n", "In country IRQ measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country IRQ measure Awareness campaigns was NEVER implemented\n", "In country IRQ measure Emergency administrative structures activated or established was NEVER implemented\n", "In country IRQ measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country IRQ measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country IRQ measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country IRQ measure Strengthening the public health system was implemented on 2020-04-02 00:00:00\n", "In country IRQ measure Limit product imports/exports was NEVER implemented\n", "In country IRQ measure Border checks was implemented on 2020-03-16 00:00:00\n", "In country IRQ measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country IRQ measure Surveillance and monitoring was NEVER implemented\n", "In country IRQ measure Other public health measures enforced was NEVER implemented\n", "In country IRQ measure Domestic travel restrictions was implemented on 2020-03-15 00:00:00\n", "In country IRQ measure State of emergency declared was NEVER implemented\n", "In country IRQ measure General recommendations was NEVER implemented\n", "In country IRQ measure Partial lockdown was implemented on 2020-03-11 00:00:00\n", "In country IRQ measure Checkpoints within the country was implemented on 2020-03-16 00:00:00\n", "In country IRQ measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country IRQ measure Curfews was implemented on 2020-03-17 00:00:00\n", "In country IRQ measure Changes in prison-related policies was NEVER implemented\n", "In country IRQ measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country IRQ measure Military deployment was NEVER implemented\n", "In country IRQ measure Full lockdown was implemented on 2020-04-04 00:00:00\n", "In country IRQ measure Visa restrictions was implemented on 2020-02-26 00:00:00\n", "In country IRQ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country IRQ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country IRQ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country IRQ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country IRQ measure Testing policy was NEVER implemented\n", "In country IRQ measure Psychological assistance and medical social work was NEVER implemented\n", "In country IRQ measure Mass population testing was NEVER implemented\n", "In country IRQ measure testing policy was NEVER implemented\n", "In country IRQ measure limit public gatherings was NEVER implemented\n", "In country IRQ measure strengthening the public health system was NEVER implemented\n", "In country IRQ measure Humanitarian exemptions was NEVER implemented\n", "In country IRQ measure Complete border closure was NEVER implemented\n", "In country IRQ measure curfews was NEVER implemented\n", "In country IRQ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country IRL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country IRL measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country IRL measure Awareness campaigns was NEVER implemented\n", "In country IRL measure Emergency administrative structures activated or established was implemented on 2020-03-28 00:00:00\n", "In country IRL measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country IRL measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country IRL measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country IRL measure Strengthening the public health system was implemented on 2020-03-24 00:00:00\n", "In country IRL measure Limit product imports/exports was NEVER implemented\n", "In country IRL measure Border checks was NEVER implemented\n", "In country IRL measure International flights suspension was NEVER implemented\n", "In country IRL measure Surveillance and monitoring was implemented on 2020-04-04 00:00:00\n", "In country IRL measure Other public health measures enforced was NEVER implemented\n", "In country IRL measure Domestic travel restrictions was implemented on 2020-03-28 00:00:00\n", "In country IRL measure State of emergency declared was NEVER implemented\n", "In country IRL measure General recommendations was implemented on 2020-03-12 00:00:00\n", "In country IRL measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country IRL measure Checkpoints within the country was NEVER implemented\n", "In country IRL measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country IRL measure Curfews was NEVER implemented\n", "In country IRL measure Changes in prison-related policies was NEVER implemented\n", "In country IRL measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country IRL measure Military deployment was NEVER implemented\n", "In country IRL measure Full lockdown was NEVER implemented\n", "In country IRL measure Visa restrictions was implemented on 2020-03-28 00:00:00\n", "In country IRL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country IRL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country IRL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country IRL measure Amendments to funeral and burial regulations was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country IRL measure Testing policy was implemented on 2020-04-04 00:00:00\n", "In country IRL measure Psychological assistance and medical social work was NEVER implemented\n", "In country IRL measure Mass population testing was NEVER implemented\n", "In country IRL measure testing policy was NEVER implemented\n", "In country IRL measure limit public gatherings was NEVER implemented\n", "In country IRL measure strengthening the public health system was NEVER implemented\n", "In country IRL measure Humanitarian exemptions was implemented on 2020-03-28 00:00:00\n", "In country IRL measure Complete border closure was NEVER implemented\n", "In country IRL measure curfews was NEVER implemented\n", "In country IRL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ISR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ISR measure Introduction of isolation and quarantine policies was implemented on 2020-03-09 00:00:00\n", "In country ISR measure Awareness campaigns was implemented on 2020-03-05 00:00:00\n", "In country ISR measure Emergency administrative structures activated or established was implemented on 2020-01-27 00:00:00\n", "In country ISR measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country ISR measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country ISR measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country ISR measure Strengthening the public health system was implemented on 2020-02-04 00:00:00\n", "In country ISR measure Limit product imports/exports was NEVER implemented\n", "In country ISR measure Border checks was implemented on 2020-03-05 00:00:00\n", "In country ISR measure International flights suspension was NEVER implemented\n", "In country ISR measure Surveillance and monitoring was implemented on 2020-02-03 00:00:00\n", "In country ISR measure Other public health measures enforced was NEVER implemented\n", "In country ISR measure Domestic travel restrictions was NEVER implemented\n", "In country ISR measure State of emergency declared was NEVER implemented\n", "In country ISR measure General recommendations was implemented on 2020-01-24 00:00:00\n", "In country ISR measure Partial lockdown was implemented on 2020-03-17 00:00:00\n", "In country ISR measure Checkpoints within the country was NEVER implemented\n", "In country ISR measure Economic measures was NEVER implemented\n", "In country ISR measure Curfews was NEVER implemented\n", "In country ISR measure Changes in prison-related policies was NEVER implemented\n", "In country ISR measure Public services closure was implemented on 2020-03-05 00:00:00\n", "In country ISR measure Military deployment was NEVER implemented\n", "In country ISR measure Full lockdown was NEVER implemented\n", "In country ISR measure Visa restrictions was implemented on 2020-03-12 00:00:00\n", "In country ISR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ISR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ISR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ISR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ISR measure Testing policy was NEVER implemented\n", "In country ISR measure Psychological assistance and medical social work was NEVER implemented\n", "In country ISR measure Mass population testing was NEVER implemented\n", "In country ISR measure testing policy was NEVER implemented\n", "In country ISR measure limit public gatherings was NEVER implemented\n", "In country ISR measure strengthening the public health system was NEVER implemented\n", "In country ISR measure Humanitarian exemptions was NEVER implemented\n", "In country ISR measure Complete border closure was NEVER implemented\n", "In country ISR measure curfews was NEVER implemented\n", "In country ISR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ITA measure Health screenings in airports and border crossings was implemented on 2020-04-07 00:00:00\n", "In country ITA measure Introduction of isolation and quarantine policies was implemented on 2020-01-23 00:00:00\n", "In country ITA measure Awareness campaigns was implemented on 2020-01-27 00:00:00\n", "In country ITA measure Emergency administrative structures activated or established was implemented on 2020-02-23 00:00:00\n", "In country ITA measure Limit public gatherings was implemented on 2020-03-09 00:00:00\n", "In country ITA measure Border closure was NEVER implemented\n", "In country ITA measure Schools closure was implemented on 2020-02-21 00:00:00\n", "In country ITA measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country ITA measure Limit product imports/exports was implemented on 2020-03-13 00:00:00\n", "In country ITA measure Border checks was implemented on 2020-03-28 00:00:00\n", "In country ITA measure International flights suspension was implemented on 2020-01-31 00:00:00\n", "In country ITA measure Surveillance and monitoring was implemented on 2020-04-10 00:00:00\n", "In country ITA measure Other public health measures enforced was implemented on 2020-03-24 00:00:00\n", "In country ITA measure Domestic travel restrictions was NEVER implemented\n", "In country ITA measure State of emergency declared was implemented on 2020-01-31 00:00:00\n", "In country ITA measure General recommendations was implemented on 2020-03-28 00:00:00\n", "In country ITA measure Partial lockdown was implemented on 2020-03-08 00:00:00\n", "In country ITA measure Checkpoints within the country was implemented on 2020-03-23 00:00:00\n", "In country ITA measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country ITA measure Curfews was NEVER implemented\n", "In country ITA measure Changes in prison-related policies was implemented on 2020-03-17 00:00:00\n", "In country ITA measure Public services closure was implemented on 2020-03-11 00:00:00\n", "In country ITA measure Military deployment was implemented on 2020-03-20 00:00:00\n", "In country ITA measure Full lockdown was implemented on 2020-03-23 00:00:00\n", "In country ITA measure Visa restrictions was NEVER implemented\n", "In country ITA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ITA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ITA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ITA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ITA measure Testing policy was implemented on 2020-04-03 00:00:00\n", "In country ITA measure Psychological assistance and medical social work was implemented on 2020-03-27 00:00:00\n", "In country ITA measure Mass population testing was implemented on UNKNOWN DATE\n", "In country ITA measure testing policy was NEVER implemented\n", "In country ITA measure limit public gatherings was implemented on 2020-03-26 00:00:00\n", "In country ITA measure strengthening the public health system was NEVER implemented\n", "In country ITA measure Humanitarian exemptions was NEVER implemented\n", "In country ITA measure Complete border closure was NEVER implemented\n", "In country ITA measure curfews was NEVER implemented\n", "In country ITA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country JAM measure Health screenings in airports and border crossings was implemented on 2020-03-20 00:00:00\n", "In country JAM measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country JAM measure Awareness campaigns was NEVER implemented\n", "In country JAM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country JAM measure Limit public gatherings was NEVER implemented\n", "In country JAM measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country JAM measure Schools closure was NEVER implemented\n", "In country JAM measure Strengthening the public health system was NEVER implemented\n", "In country JAM measure Limit product imports/exports was NEVER implemented\n", "In country JAM measure Border checks was NEVER implemented\n", "In country JAM measure International flights suspension was NEVER implemented\n", "In country JAM measure Surveillance and monitoring was NEVER implemented\n", "In country JAM measure Other public health measures enforced was NEVER implemented\n", "In country JAM measure Domestic travel restrictions was NEVER implemented\n", "In country JAM measure State of emergency declared was NEVER implemented\n", "In country JAM measure General recommendations was NEVER implemented\n", "In country JAM measure Partial lockdown was NEVER implemented\n", "In country JAM measure Checkpoints within the country was NEVER implemented\n", "In country JAM measure Economic measures was NEVER implemented\n", "In country JAM measure Curfews was implemented on 2020-04-01 00:00:00\n", "In country JAM measure Changes in prison-related policies was NEVER implemented\n", "In country JAM measure Public services closure was NEVER implemented\n", "In country JAM measure Military deployment was NEVER implemented\n", "In country JAM measure Full lockdown was NEVER implemented\n", "In country JAM measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country JAM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country JAM measure Additional health/documents requirements upon arrival was implemented on 2020-03-14 00:00:00\n", "In country JAM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country JAM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country JAM measure Testing policy was NEVER implemented\n", "In country JAM measure Psychological assistance and medical social work was NEVER implemented\n", "In country JAM measure Mass population testing was NEVER implemented\n", "In country JAM measure testing policy was NEVER implemented\n", "In country JAM measure limit public gatherings was NEVER implemented\n", "In country JAM measure strengthening the public health system was NEVER implemented\n", "In country JAM measure Humanitarian exemptions was NEVER implemented\n", "In country JAM measure Complete border closure was NEVER implemented\n", "In country JAM measure curfews was NEVER implemented\n", "In country JAM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country JPN measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country JPN measure Introduction of isolation and quarantine policies was implemented on 2020-02-06 00:00:00\n", "In country JPN measure Awareness campaigns was implemented on 2020-02-14 00:00:00\n", "In country JPN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country JPN measure Limit public gatherings was implemented on 2020-02-20 00:00:00\n", "In country JPN measure Border closure was NEVER implemented\n", "In country JPN measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country JPN measure Strengthening the public health system was implemented on 2020-01-28 00:00:00\n", "In country JPN measure Limit product imports/exports was NEVER implemented\n", "In country JPN measure Border checks was NEVER implemented\n", "In country JPN measure International flights suspension was implemented on 2020-02-04 00:00:00\n", "In country JPN measure Surveillance and monitoring was implemented on 2020-02-25 00:00:00\n", "In country JPN measure Other public health measures enforced was NEVER implemented\n", "In country JPN measure Domestic travel restrictions was NEVER implemented\n", "In country JPN measure State of emergency declared was NEVER implemented\n", "In country JPN measure General recommendations was implemented on 2020-02-14 00:00:00\n", "In country JPN measure Partial lockdown was NEVER implemented\n", "In country JPN measure Checkpoints within the country was NEVER implemented\n", "In country JPN measure Economic measures was implemented on 2020-03-06 00:00:00\n", "In country JPN measure Curfews was NEVER implemented\n", "In country JPN measure Changes in prison-related policies was NEVER implemented\n", "In country JPN measure Public services closure was NEVER implemented\n", "In country JPN measure Military deployment was NEVER implemented\n", "In country JPN measure Full lockdown was NEVER implemented\n", "In country JPN measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country JPN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country JPN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country JPN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country JPN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country JPN measure Testing policy was NEVER implemented\n", "In country JPN measure Psychological assistance and medical social work was implemented on 2020-02-14 00:00:00\n", "In country JPN measure Mass population testing was NEVER implemented\n", "In country JPN measure testing policy was NEVER implemented\n", "In country JPN measure limit public gatherings was NEVER implemented\n", "In country JPN measure strengthening the public health system was NEVER implemented\n", "In country JPN measure Humanitarian exemptions was NEVER implemented\n", "In country JPN measure Complete border closure was NEVER implemented\n", "In country JPN measure curfews was NEVER implemented\n", "In country JPN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country JOR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country JOR measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country JOR measure Awareness campaigns was NEVER implemented\n", "In country JOR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country JOR measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country JOR measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country JOR measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country JOR measure Strengthening the public health system was implemented on 2020-03-29 00:00:00\n", "In country JOR measure Limit product imports/exports was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country JOR measure Border checks was NEVER implemented\n", "In country JOR measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country JOR measure Surveillance and monitoring was NEVER implemented\n", "In country JOR measure Other public health measures enforced was NEVER implemented\n", "In country JOR measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country JOR measure State of emergency declared was implemented on 2020-03-18 00:00:00\n", "In country JOR measure General recommendations was NEVER implemented\n", "In country JOR measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country JOR measure Checkpoints within the country was implemented on 2020-03-18 00:00:00\n", "In country JOR measure Economic measures was implemented on 2020-03-28 00:00:00\n", "In country JOR measure Curfews was implemented on 2020-03-21 00:00:00\n", "In country JOR measure Changes in prison-related policies was implemented on 2020-03-20 00:00:00\n", "In country JOR measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country JOR measure Military deployment was implemented on 2020-03-18 00:00:00\n", "In country JOR measure Full lockdown was NEVER implemented\n", "In country JOR measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country JOR measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-03-16 00:00:00\n", "In country JOR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country JOR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country JOR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country JOR measure Testing policy was NEVER implemented\n", "In country JOR measure Psychological assistance and medical social work was NEVER implemented\n", "In country JOR measure Mass population testing was NEVER implemented\n", "In country JOR measure testing policy was NEVER implemented\n", "In country JOR measure limit public gatherings was NEVER implemented\n", "In country JOR measure strengthening the public health system was NEVER implemented\n", "In country JOR measure Humanitarian exemptions was NEVER implemented\n", "In country JOR measure Complete border closure was NEVER implemented\n", "In country JOR measure curfews was NEVER implemented\n", "In country JOR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KAZ measure Health screenings in airports and border crossings was NEVER implemented\n", "In country KAZ measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country KAZ measure Awareness campaigns was implemented on 2020-03-18 00:00:00\n", "In country KAZ measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KAZ measure Limit public gatherings was implemented on 2020-03-05 00:00:00\n", "In country KAZ measure Border closure was NEVER implemented\n", "In country KAZ measure Schools closure was NEVER implemented\n", "In country KAZ measure Strengthening the public health system was implemented on 2020-03-25 00:00:00\n", "In country KAZ measure Limit product imports/exports was NEVER implemented\n", "In country KAZ measure Border checks was NEVER implemented\n", "In country KAZ measure International flights suspension was NEVER implemented\n", "In country KAZ measure Surveillance and monitoring was NEVER implemented\n", "In country KAZ measure Other public health measures enforced was NEVER implemented\n", "In country KAZ measure Domestic travel restrictions was NEVER implemented\n", "In country KAZ measure State of emergency declared was implemented on 2020-03-28 00:00:00\n", "In country KAZ measure General recommendations was implemented on 2020-03-11 00:00:00\n", "In country KAZ measure Partial lockdown was NEVER implemented\n", "In country KAZ measure Checkpoints within the country was NEVER implemented\n", "In country KAZ measure Economic measures was NEVER implemented\n", "In country KAZ measure Curfews was NEVER implemented\n", "In country KAZ measure Changes in prison-related policies was NEVER implemented\n", "In country KAZ measure Public services closure was NEVER implemented\n", "In country KAZ measure Military deployment was NEVER implemented\n", "In country KAZ measure Full lockdown was NEVER implemented\n", "In country KAZ measure Visa restrictions was implemented on 2020-03-06 00:00:00\n", "In country KAZ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KAZ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country KAZ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KAZ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KAZ measure Testing policy was NEVER implemented\n", "In country KAZ measure Psychological assistance and medical social work was NEVER implemented\n", "In country KAZ measure Mass population testing was NEVER implemented\n", "In country KAZ measure testing policy was NEVER implemented\n", "In country KAZ measure limit public gatherings was NEVER implemented\n", "In country KAZ measure strengthening the public health system was NEVER implemented\n", "In country KAZ measure Humanitarian exemptions was NEVER implemented\n", "In country KAZ measure Complete border closure was NEVER implemented\n", "In country KAZ measure curfews was NEVER implemented\n", "In country KAZ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KEN measure Health screenings in airports and border crossings was NEVER implemented\n", "In country KEN measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country KEN measure Awareness campaigns was implemented on 2020-03-25 00:00:00\n", "In country KEN measure Emergency administrative structures activated or established was implemented on 2020-03-31 00:00:00\n", "In country KEN measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country KEN measure Border closure was implemented on UNKNOWN DATE\n", "In country KEN measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country KEN measure Strengthening the public health system was implemented on 2020-04-02 00:00:00\n", "In country KEN measure Limit product imports/exports was NEVER implemented\n", "In country KEN measure Border checks was NEVER implemented\n", "In country KEN measure International flights suspension was implemented on 2020-03-25 00:00:00\n", "In country KEN measure Surveillance and monitoring was implemented on 2020-04-15 00:00:00\n", "In country KEN measure Other public health measures enforced was implemented on 2020-04-06 00:00:00\n", "In country KEN measure Domestic travel restrictions was implemented on 2020-04-06 00:00:00\n", "In country KEN measure State of emergency declared was NEVER implemented\n", "In country KEN measure General recommendations was implemented on 2020-03-06 00:00:00\n", "In country KEN measure Partial lockdown was NEVER implemented\n", "In country KEN measure Checkpoints within the country was NEVER implemented\n", "In country KEN measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country KEN measure Curfews was implemented on 2020-03-27 00:00:00\n", "In country KEN measure Changes in prison-related policies was implemented on 2020-04-02 00:00:00\n", "In country KEN measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country KEN measure Military deployment was NEVER implemented\n", "In country KEN measure Full lockdown was NEVER implemented\n", "In country KEN measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country KEN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KEN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country KEN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KEN measure Amendments to funeral and burial regulations was implemented on 2020-04-05 00:00:00\n", "In country KEN measure Testing policy was implemented on 2020-04-07 00:00:00\n", "In country KEN measure Psychological assistance and medical social work was NEVER implemented\n", "In country KEN measure Mass population testing was NEVER implemented\n", "In country KEN measure testing policy was NEVER implemented\n", "In country KEN measure limit public gatherings was NEVER implemented\n", "In country KEN measure strengthening the public health system was NEVER implemented\n", "In country KEN measure Humanitarian exemptions was NEVER implemented\n", "In country KEN measure Complete border closure was NEVER implemented\n", "In country KEN measure curfews was NEVER implemented\n", "In country KEN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KIR measure Health screenings in airports and border crossings was implemented on 2020-03-17 00:00:00\n", "In country KIR measure Introduction of isolation and quarantine policies was implemented on 2020-03-07 00:00:00\n", "In country KIR measure Awareness campaigns was implemented on 2020-04-06 00:00:00\n", "In country KIR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KIR measure Limit public gatherings was implemented on 2020-03-28 00:00:00\n", "In country KIR measure Border closure was NEVER implemented\n", "In country KIR measure Schools closure was NEVER implemented\n", "In country KIR measure Strengthening the public health system was implemented on 2020-04-06 00:00:00\n", "In country KIR measure Limit product imports/exports was NEVER implemented\n", "In country KIR measure Border checks was NEVER implemented\n", "In country KIR measure International flights suspension was NEVER implemented\n", "In country KIR measure Surveillance and monitoring was NEVER implemented\n", "In country KIR measure Other public health measures enforced was NEVER implemented\n", "In country KIR measure Domestic travel restrictions was NEVER implemented\n", "In country KIR measure State of emergency declared was implemented on 2020-03-28 00:00:00\n", "In country KIR measure General recommendations was NEVER implemented\n", "In country KIR measure Partial lockdown was NEVER implemented\n", "In country KIR measure Checkpoints within the country was NEVER implemented\n", "In country KIR measure Economic measures was NEVER implemented\n", "In country KIR measure Curfews was NEVER implemented\n", "In country KIR measure Changes in prison-related policies was NEVER implemented\n", "In country KIR measure Public services closure was implemented on 2020-04-21 00:00:00\n", "In country KIR measure Military deployment was NEVER implemented\n", "In country KIR measure Full lockdown was NEVER implemented\n", "In country KIR measure Visa restrictions was implemented on 2020-03-07 00:00:00\n", "In country KIR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KIR measure Additional health/documents requirements upon arrival was implemented on 2020-03-07 00:00:00\n", "In country KIR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KIR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KIR measure Testing policy was NEVER implemented\n", "In country KIR measure Psychological assistance and medical social work was NEVER implemented\n", "In country KIR measure Mass population testing was NEVER implemented\n", "In country KIR measure testing policy was NEVER implemented\n", "In country KIR measure limit public gatherings was NEVER implemented\n", "In country KIR measure strengthening the public health system was NEVER implemented\n", "In country KIR measure Humanitarian exemptions was NEVER implemented\n", "In country KIR measure Complete border closure was NEVER implemented\n", "In country KIR measure curfews was NEVER implemented\n", "In country KIR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PRK measure Health screenings in airports and border crossings was NEVER implemented\n", "In country PRK measure Introduction of isolation and quarantine policies was implemented on 2020-03-21 00:00:00\n", "In country PRK measure Awareness campaigns was NEVER implemented\n", "In country PRK measure Emergency administrative structures activated or established was NEVER implemented\n", "In country PRK measure Limit public gatherings was NEVER implemented\n", "In country PRK measure Border closure was implemented on UNKNOWN DATE\n", "In country PRK measure Schools closure was NEVER implemented\n", "In country PRK measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country PRK measure Limit product imports/exports was NEVER implemented\n", "In country PRK measure Border checks was NEVER implemented\n", "In country PRK measure International flights suspension was NEVER implemented\n", "In country PRK measure Surveillance and monitoring was NEVER implemented\n", "In country PRK measure Other public health measures enforced was NEVER implemented\n", "In country PRK measure Domestic travel restrictions was NEVER implemented\n", "In country PRK measure State of emergency declared was NEVER implemented\n", "In country PRK measure General recommendations was NEVER implemented\n", "In country PRK measure Partial lockdown was NEVER implemented\n", "In country PRK measure Checkpoints within the country was NEVER implemented\n", "In country PRK measure Economic measures was NEVER implemented\n", "In country PRK measure Curfews was NEVER implemented\n", "In country PRK measure Changes in prison-related policies was NEVER implemented\n", "In country PRK measure Public services closure was NEVER implemented\n", "In country PRK measure Military deployment was NEVER implemented\n", "In country PRK measure Full lockdown was NEVER implemented\n", "In country PRK measure Visa restrictions was NEVER implemented\n", "In country PRK measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PRK measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PRK measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PRK measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PRK measure Testing policy was NEVER implemented\n", "In country PRK measure Psychological assistance and medical social work was NEVER implemented\n", "In country PRK measure Mass population testing was NEVER implemented\n", "In country PRK measure testing policy was NEVER implemented\n", "In country PRK measure limit public gatherings was NEVER implemented\n", "In country PRK measure strengthening the public health system was NEVER implemented\n", "In country PRK measure Humanitarian exemptions was NEVER implemented\n", "In country PRK measure Complete border closure was NEVER implemented\n", "In country PRK measure curfews was NEVER implemented\n", "In country PRK measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country KOR measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country KOR measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country KOR measure Awareness campaigns was NEVER implemented\n", "In country KOR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KOR measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country KOR measure Border closure was NEVER implemented\n", "In country KOR measure Schools closure was implemented on 2020-02-27 00:00:00\n", "In country KOR measure Strengthening the public health system was NEVER implemented\n", "In country KOR measure Limit product imports/exports was NEVER implemented\n", "In country KOR measure Border checks was NEVER implemented\n", "In country KOR measure International flights suspension was NEVER implemented\n", "In country KOR measure Surveillance and monitoring was implemented on 2020-03-16 00:00:00\n", "In country KOR measure Other public health measures enforced was NEVER implemented\n", "In country KOR measure Domestic travel restrictions was NEVER implemented\n", "In country KOR measure State of emergency declared was NEVER implemented\n", "In country KOR measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country KOR measure Partial lockdown was implemented on 2020-03-22 00:00:00\n", "In country KOR measure Checkpoints within the country was NEVER implemented\n", "In country KOR measure Economic measures was NEVER implemented\n", "In country KOR measure Curfews was NEVER implemented\n", "In country KOR measure Changes in prison-related policies was NEVER implemented\n", "In country KOR measure Public services closure was NEVER implemented\n", "In country KOR measure Military deployment was NEVER implemented\n", "In country KOR measure Full lockdown was NEVER implemented\n", "In country KOR measure Visa restrictions was implemented on 2020-03-10 00:00:00\n", "In country KOR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KOR measure Additional health/documents requirements upon arrival was implemented on 2020-03-12 00:00:00\n", "In country KOR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KOR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KOR measure Testing policy was NEVER implemented\n", "In country KOR measure Psychological assistance and medical social work was implemented on 2020-03-20 00:00:00\n", "In country KOR measure Mass population testing was NEVER implemented\n", "In country KOR measure testing policy was NEVER implemented\n", "In country KOR measure limit public gatherings was NEVER implemented\n", "In country KOR measure strengthening the public health system was NEVER implemented\n", "In country KOR measure Humanitarian exemptions was NEVER implemented\n", "In country KOR measure Complete border closure was NEVER implemented\n", "In country KOR measure curfews was NEVER implemented\n", "In country KOR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KWT measure Health screenings in airports and border crossings was implemented on 2020-04-03 00:00:00\n", "In country KWT measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country KWT measure Awareness campaigns was implemented on 2020-04-04 00:00:00\n", "In country KWT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KWT measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country KWT measure Border closure was implemented on 2020-03-11 00:00:00\n", "In country KWT measure Schools closure was implemented on 2020-02-26 00:00:00\n", "In country KWT measure Strengthening the public health system was NEVER implemented\n", "In country KWT measure Limit product imports/exports was implemented on UNKNOWN DATE\n", "In country KWT measure Border checks was NEVER implemented\n", "In country KWT measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country KWT measure Surveillance and monitoring was implemented on 2020-04-03 00:00:00\n", "In country KWT measure Other public health measures enforced was implemented on 2020-04-11 00:00:00\n", "In country KWT measure Domestic travel restrictions was NEVER implemented\n", "In country KWT measure State of emergency declared was NEVER implemented\n", "In country KWT measure General recommendations was NEVER implemented\n", "In country KWT measure Partial lockdown was NEVER implemented\n", "In country KWT measure Checkpoints within the country was NEVER implemented\n", "In country KWT measure Economic measures was implemented on 2020-04-04 00:00:00\n", "In country KWT measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country KWT measure Changes in prison-related policies was NEVER implemented\n", "In country KWT measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country KWT measure Military deployment was NEVER implemented\n", "In country KWT measure Full lockdown was implemented on 2020-04-06 00:00:00\n", "In country KWT measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country KWT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KWT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country KWT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KWT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KWT measure Testing policy was NEVER implemented\n", "In country KWT measure Psychological assistance and medical social work was NEVER implemented\n", "In country KWT measure Mass population testing was NEVER implemented\n", "In country KWT measure testing policy was NEVER implemented\n", "In country KWT measure limit public gatherings was NEVER implemented\n", "In country KWT measure strengthening the public health system was implemented on 2020-04-11 00:00:00\n", "In country KWT measure Humanitarian exemptions was NEVER implemented\n", "In country KWT measure Complete border closure was NEVER implemented\n", "In country KWT measure curfews was NEVER implemented\n", "In country KWT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KGZ measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country KGZ measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country KGZ measure Awareness campaigns was implemented on 2020-02-04 00:00:00\n", "In country KGZ measure Emergency administrative structures activated or established was NEVER implemented\n", "In country KGZ measure Limit public gatherings was NEVER implemented\n", "In country KGZ measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country KGZ measure Schools closure was NEVER implemented\n", "In country KGZ measure Strengthening the public health system was implemented on 2020-03-11 00:00:00\n", "In country KGZ measure Limit product imports/exports was NEVER implemented\n", "In country KGZ measure Border checks was NEVER implemented\n", "In country KGZ measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country KGZ measure Surveillance and monitoring was implemented on 2020-01-22 00:00:00\n", "In country KGZ measure Other public health measures enforced was NEVER implemented\n", "In country KGZ measure Domestic travel restrictions was NEVER implemented\n", "In country KGZ measure State of emergency declared was NEVER implemented\n", "In country KGZ measure General recommendations was NEVER implemented\n", "In country KGZ measure Partial lockdown was NEVER implemented\n", "In country KGZ measure Checkpoints within the country was NEVER implemented\n", "In country KGZ measure Economic measures was NEVER implemented\n", "In country KGZ measure Curfews was NEVER implemented\n", "In country KGZ measure Changes in prison-related policies was NEVER implemented\n", "In country KGZ measure Public services closure was NEVER implemented\n", "In country KGZ measure Military deployment was NEVER implemented\n", "In country KGZ measure Full lockdown was NEVER implemented\n", "In country KGZ measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country KGZ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KGZ measure Additional health/documents requirements upon arrival was implemented on UNKNOWN DATE\n", "In country KGZ measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KGZ measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KGZ measure Testing policy was implemented on 2020-02-25 00:00:00\n", "In country KGZ measure Psychological assistance and medical social work was NEVER implemented\n", "In country KGZ measure Mass population testing was NEVER implemented\n", "In country KGZ measure testing policy was NEVER implemented\n", "In country KGZ measure limit public gatherings was NEVER implemented\n", "In country KGZ measure strengthening the public health system was NEVER implemented\n", "In country KGZ measure Humanitarian exemptions was NEVER implemented\n", "In country KGZ measure Complete border closure was NEVER implemented\n", "In country KGZ measure curfews was NEVER implemented\n", "In country KGZ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LAO measure Health screenings in airports and border crossings was implemented on 2020-02-17 00:00:00\n", "In country LAO measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country LAO measure Awareness campaigns was NEVER implemented\n", "In country LAO measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LAO measure Limit public gatherings was NEVER implemented\n", "In country LAO measure Border closure was NEVER implemented\n", "In country LAO measure Schools closure was NEVER implemented\n", "In country LAO measure Strengthening the public health system was NEVER implemented\n", "In country LAO measure Limit product imports/exports was NEVER implemented\n", "In country LAO measure Border checks was NEVER implemented\n", "In country LAO measure International flights suspension was implemented on 2020-02-17 00:00:00\n", "In country LAO measure Surveillance and monitoring was NEVER implemented\n", "In country LAO measure Other public health measures enforced was NEVER implemented\n", "In country LAO measure Domestic travel restrictions was NEVER implemented\n", "In country LAO measure State of emergency declared was NEVER implemented\n", "In country LAO measure General recommendations was NEVER implemented\n", "In country LAO measure Partial lockdown was NEVER implemented\n", "In country LAO measure Checkpoints within the country was NEVER implemented\n", "In country LAO measure Economic measures was NEVER implemented\n", "In country LAO measure Curfews was NEVER implemented\n", "In country LAO measure Changes in prison-related policies was NEVER implemented\n", "In country LAO measure Public services closure was NEVER implemented\n", "In country LAO measure Military deployment was NEVER implemented\n", "In country LAO measure Full lockdown was NEVER implemented\n", "In country LAO measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country LAO measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LAO measure Additional health/documents requirements upon arrival was implemented on 2020-02-17 00:00:00\n", "In country LAO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LAO measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LAO measure Testing policy was NEVER implemented\n", "In country LAO measure Psychological assistance and medical social work was NEVER implemented\n", "In country LAO measure Mass population testing was NEVER implemented\n", "In country LAO measure testing policy was NEVER implemented\n", "In country LAO measure limit public gatherings was NEVER implemented\n", "In country LAO measure strengthening the public health system was NEVER implemented\n", "In country LAO measure Humanitarian exemptions was NEVER implemented\n", "In country LAO measure Complete border closure was NEVER implemented\n", "In country LAO measure curfews was NEVER implemented\n", "In country LAO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LVA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country LVA measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country LVA measure Awareness campaigns was implemented on 2020-03-24 00:00:00\n", "In country LVA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LVA measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country LVA measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country LVA measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country LVA measure Strengthening the public health system was implemented on 2020-01-31 00:00:00\n", "In country LVA measure Limit product imports/exports was NEVER implemented\n", "In country LVA measure Border checks was NEVER implemented\n", "In country LVA measure International flights suspension was NEVER implemented\n", "In country LVA measure Surveillance and monitoring was implemented on 2020-03-29 00:00:00\n", "In country LVA measure Other public health measures enforced was NEVER implemented\n", "In country LVA measure Domestic travel restrictions was NEVER implemented\n", "In country LVA measure State of emergency declared was implemented on 2020-03-14 00:00:00\n", "In country LVA measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country LVA measure Partial lockdown was NEVER implemented\n", "In country LVA measure Checkpoints within the country was NEVER implemented\n", "In country LVA measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country LVA measure Curfews was NEVER implemented\n", "In country LVA measure Changes in prison-related policies was implemented on 2020-03-14 00:00:00\n", "In country LVA measure Public services closure was implemented on 2020-03-25 00:00:00\n", "In country LVA measure Military deployment was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country LVA measure Full lockdown was NEVER implemented\n", "In country LVA measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country LVA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LVA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LVA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LVA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LVA measure Testing policy was implemented on 2020-04-08 00:00:00\n", "In country LVA measure Psychological assistance and medical social work was NEVER implemented\n", "In country LVA measure Mass population testing was NEVER implemented\n", "In country LVA measure testing policy was NEVER implemented\n", "In country LVA measure limit public gatherings was implemented on 2020-03-30 00:00:00\n", "In country LVA measure strengthening the public health system was NEVER implemented\n", "In country LVA measure Humanitarian exemptions was NEVER implemented\n", "In country LVA measure Complete border closure was NEVER implemented\n", "In country LVA measure curfews was NEVER implemented\n", "In country LVA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LBN measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country LBN measure Introduction of isolation and quarantine policies was implemented on 2020-02-16 00:00:00\n", "In country LBN measure Awareness campaigns was NEVER implemented\n", "In country LBN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LBN measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country LBN measure Border closure was implemented on 2020-03-12 00:00:00\n", "In country LBN measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country LBN measure Strengthening the public health system was NEVER implemented\n", "In country LBN measure Limit product imports/exports was NEVER implemented\n", "In country LBN measure Border checks was NEVER implemented\n", "In country LBN measure International flights suspension was implemented on 2020-03-11 00:00:00\n", "In country LBN measure Surveillance and monitoring was implemented on 2020-02-21 00:00:00\n", "In country LBN measure Other public health measures enforced was NEVER implemented\n", "In country LBN measure Domestic travel restrictions was NEVER implemented\n", "In country LBN measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country LBN measure General recommendations was NEVER implemented\n", "In country LBN measure Partial lockdown was NEVER implemented\n", "In country LBN measure Checkpoints within the country was NEVER implemented\n", "In country LBN measure Economic measures was implemented on 2020-03-24 00:00:00\n", "In country LBN measure Curfews was implemented on 2020-03-26 00:00:00\n", "In country LBN measure Changes in prison-related policies was NEVER implemented\n", "In country LBN measure Public services closure was implemented on 2020-03-11 00:00:00\n", "In country LBN measure Military deployment was NEVER implemented\n", "In country LBN measure Full lockdown was NEVER implemented\n", "In country LBN measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country LBN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LBN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LBN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LBN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LBN measure Testing policy was NEVER implemented\n", "In country LBN measure Psychological assistance and medical social work was NEVER implemented\n", "In country LBN measure Mass population testing was NEVER implemented\n", "In country LBN measure testing policy was NEVER implemented\n", "In country LBN measure limit public gatherings was NEVER implemented\n", "In country LBN measure strengthening the public health system was NEVER implemented\n", "In country LBN measure Humanitarian exemptions was NEVER implemented\n", "In country LBN measure Complete border closure was implemented on 2020-03-16 00:00:00\n", "In country LBN measure curfews was NEVER implemented\n", "In country LBN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LSO measure Health screenings in airports and border crossings was implemented on 2020-03-06 00:00:00\n", "In country LSO measure Introduction of isolation and quarantine policies was implemented on 2020-03-06 00:00:00\n", "In country LSO measure Awareness campaigns was NEVER implemented\n", "In country LSO measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LSO measure Limit public gatherings was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Border closure was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country LSO measure Strengthening the public health system was NEVER implemented\n", "In country LSO measure Limit product imports/exports was NEVER implemented\n", "In country LSO measure Border checks was NEVER implemented\n", "In country LSO measure International flights suspension was NEVER implemented\n", "In country LSO measure Surveillance and monitoring was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Other public health measures enforced was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Domestic travel restrictions was NEVER implemented\n", "In country LSO measure State of emergency declared was implemented on 2020-03-18 00:00:00\n", "In country LSO measure General recommendations was NEVER implemented\n", "In country LSO measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Checkpoints within the country was NEVER implemented\n", "In country LSO measure Economic measures was NEVER implemented\n", "In country LSO measure Curfews was NEVER implemented\n", "In country LSO measure Changes in prison-related policies was NEVER implemented\n", "In country LSO measure Public services closure was implemented on 2020-03-30 00:00:00\n", "In country LSO measure Military deployment was NEVER implemented\n", "In country LSO measure Full lockdown was NEVER implemented\n", "In country LSO measure Visa restrictions was NEVER implemented\n", "In country LSO measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LSO measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LSO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LSO measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LSO measure Testing policy was NEVER implemented\n", "In country LSO measure Psychological assistance and medical social work was NEVER implemented\n", "In country LSO measure Mass population testing was NEVER implemented\n", "In country LSO measure testing policy was NEVER implemented\n", "In country LSO measure limit public gatherings was NEVER implemented\n", "In country LSO measure strengthening the public health system was NEVER implemented\n", "In country LSO measure Humanitarian exemptions was NEVER implemented\n", "In country LSO measure Complete border closure was NEVER implemented\n", "In country LSO measure curfews was NEVER implemented\n", "In country LSO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LBR measure Health screenings in airports and border crossings was implemented on 2020-03-09 00:00:00\n", "In country LBR measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country LBR measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country LBR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LBR measure Limit public gatherings was implemented on 2020-03-22 00:00:00\n", "In country LBR measure Border closure was NEVER implemented\n", "In country LBR measure Schools closure was implemented on 2020-03-22 00:00:00\n", "In country LBR measure Strengthening the public health system was NEVER implemented\n", "In country LBR measure Limit product imports/exports was NEVER implemented\n", "In country LBR measure Border checks was NEVER implemented\n", "In country LBR measure International flights suspension was implemented on 2020-03-24 00:00:00\n", "In country LBR measure Surveillance and monitoring was NEVER implemented\n", "In country LBR measure Other public health measures enforced was NEVER implemented\n", "In country LBR measure Domestic travel restrictions was NEVER implemented\n", "In country LBR measure State of emergency declared was implemented on 2020-03-22 00:00:00\n", "In country LBR measure General recommendations was implemented on 2020-03-22 00:00:00\n", "In country LBR measure Partial lockdown was implemented on 2020-04-10 00:00:00\n", "In country LBR measure Checkpoints within the country was NEVER implemented\n", "In country LBR measure Economic measures was NEVER implemented\n", "In country LBR measure Curfews was NEVER implemented\n", "In country LBR measure Changes in prison-related policies was NEVER implemented\n", "In country LBR measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country LBR measure Military deployment was NEVER implemented\n", "In country LBR measure Full lockdown was implemented on 2020-04-10 00:00:00\n", "In country LBR measure Visa restrictions was NEVER implemented\n", "In country LBR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LBR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LBR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LBR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LBR measure Testing policy was NEVER implemented\n", "In country LBR measure Psychological assistance and medical social work was NEVER implemented\n", "In country LBR measure Mass population testing was NEVER implemented\n", "In country LBR measure testing policy was NEVER implemented\n", "In country LBR measure limit public gatherings was NEVER implemented\n", "In country LBR measure strengthening the public health system was NEVER implemented\n", "In country LBR measure Humanitarian exemptions was NEVER implemented\n", "In country LBR measure Complete border closure was NEVER implemented\n", "In country LBR measure curfews was NEVER implemented\n", "In country LBR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LBY measure Health screenings in airports and border crossings was NEVER implemented\n", "In country LBY measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country LBY measure Awareness campaigns was NEVER implemented\n", "In country LBY measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LBY measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country LBY measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country LBY measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country LBY measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country LBY measure Limit product imports/exports was NEVER implemented\n", "In country LBY measure Border checks was NEVER implemented\n", "In country LBY measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country LBY measure Surveillance and monitoring was NEVER implemented\n", "In country LBY measure Other public health measures enforced was NEVER implemented\n", "In country LBY measure Domestic travel restrictions was implemented on 2020-03-21 00:00:00\n", "In country LBY measure State of emergency declared was implemented on 2020-03-15 00:00:00\n", "In country LBY measure General recommendations was implemented on 2020-02-24 00:00:00\n", "In country LBY measure Partial lockdown was NEVER implemented\n", "In country LBY measure Checkpoints within the country was NEVER implemented\n", "In country LBY measure Economic measures was implemented on 2020-04-06 00:00:00\n", "In country LBY measure Curfews was implemented on 2020-03-18 00:00:00\n", "In country LBY measure Changes in prison-related policies was implemented on 2020-03-30 00:00:00\n", "In country LBY measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country LBY measure Military deployment was NEVER implemented\n", "In country LBY measure Full lockdown was implemented on 2020-03-29 00:00:00\n", "In country LBY measure Visa restrictions was NEVER implemented\n", "In country LBY measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LBY measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LBY measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LBY measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LBY measure Testing policy was NEVER implemented\n", "In country LBY measure Psychological assistance and medical social work was NEVER implemented\n", "In country LBY measure Mass population testing was NEVER implemented\n", "In country LBY measure testing policy was NEVER implemented\n", "In country LBY measure limit public gatherings was NEVER implemented\n", "In country LBY measure strengthening the public health system was implemented on 2020-03-26 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country LBY measure Humanitarian exemptions was NEVER implemented\n", "In country LBY measure Complete border closure was NEVER implemented\n", "In country LBY measure curfews was NEVER implemented\n", "In country LBY measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LIE measure Health screenings in airports and border crossings was NEVER implemented\n", "In country LIE measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country LIE measure Awareness campaigns was implemented on 2020-03-18 00:00:00\n", "In country LIE measure Emergency administrative structures activated or established was NEVER implemented\n", "In country LIE measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country LIE measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country LIE measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country LIE measure Strengthening the public health system was implemented on 2020-03-23 00:00:00\n", "In country LIE measure Limit product imports/exports was NEVER implemented\n", "In country LIE measure Border checks was NEVER implemented\n", "In country LIE measure International flights suspension was NEVER implemented\n", "In country LIE measure Surveillance and monitoring was NEVER implemented\n", "In country LIE measure Other public health measures enforced was NEVER implemented\n", "In country LIE measure Domestic travel restrictions was NEVER implemented\n", "In country LIE measure State of emergency declared was NEVER implemented\n", "In country LIE measure General recommendations was NEVER implemented\n", "In country LIE measure Partial lockdown was NEVER implemented\n", "In country LIE measure Checkpoints within the country was NEVER implemented\n", "In country LIE measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country LIE measure Curfews was NEVER implemented\n", "In country LIE measure Changes in prison-related policies was NEVER implemented\n", "In country LIE measure Public services closure was implemented on 2020-03-19 00:00:00\n", "In country LIE measure Military deployment was implemented on 2020-04-01 00:00:00\n", "In country LIE measure Full lockdown was NEVER implemented\n", "In country LIE measure Visa restrictions was NEVER implemented\n", "In country LIE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LIE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LIE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LIE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LIE measure Testing policy was NEVER implemented\n", "In country LIE measure Psychological assistance and medical social work was NEVER implemented\n", "In country LIE measure Mass population testing was NEVER implemented\n", "In country LIE measure testing policy was NEVER implemented\n", "In country LIE measure limit public gatherings was NEVER implemented\n", "In country LIE measure strengthening the public health system was NEVER implemented\n", "In country LIE measure Humanitarian exemptions was NEVER implemented\n", "In country LIE measure Complete border closure was NEVER implemented\n", "In country LIE measure curfews was NEVER implemented\n", "In country LIE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LTU measure Health screenings in airports and border crossings was implemented on 2020-04-02 00:00:00\n", "In country LTU measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Awareness campaigns was NEVER implemented\n", "In country LTU measure Emergency administrative structures activated or established was implemented on 2020-04-08 00:00:00\n", "In country LTU measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Limit product imports/exports was implemented on 2020-04-02 00:00:00\n", "In country LTU measure Border checks was implemented on 2020-01-27 00:00:00\n", "In country LTU measure International flights suspension was implemented on 2020-04-04 00:00:00\n", "In country LTU measure Surveillance and monitoring was implemented on 2020-04-07 00:00:00\n", "In country LTU measure Other public health measures enforced was NEVER implemented\n", "In country LTU measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country LTU measure State of emergency declared was implemented on 2020-02-26 00:00:00\n", "In country LTU measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Partial lockdown was NEVER implemented\n", "In country LTU measure Checkpoints within the country was NEVER implemented\n", "In country LTU measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Curfews was NEVER implemented\n", "In country LTU measure Changes in prison-related policies was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country LTU measure Military deployment was NEVER implemented\n", "In country LTU measure Full lockdown was NEVER implemented\n", "In country LTU measure Visa restrictions was NEVER implemented\n", "In country LTU measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LTU measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LTU measure Requirement to wear protective gear in public was implemented on 2020-04-08 00:00:00\n", "In country LTU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LTU measure Testing policy was implemented on 2020-03-27 00:00:00\n", "In country LTU measure Psychological assistance and medical social work was implemented on 2020-03-25 00:00:00\n", "In country LTU measure Mass population testing was NEVER implemented\n", "In country LTU measure testing policy was NEVER implemented\n", "In country LTU measure limit public gatherings was NEVER implemented\n", "In country LTU measure strengthening the public health system was NEVER implemented\n", "In country LTU measure Humanitarian exemptions was NEVER implemented\n", "In country LTU measure Complete border closure was NEVER implemented\n", "In country LTU measure curfews was NEVER implemented\n", "In country LTU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LUX measure Health screenings in airports and border crossings was NEVER implemented\n", "In country LUX measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country LUX measure Awareness campaigns was implemented on 2020-02-29 00:00:00\n", "In country LUX measure Emergency administrative structures activated or established was implemented on 2020-03-11 00:00:00\n", "In country LUX measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country LUX measure Border closure was NEVER implemented\n", "In country LUX measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country LUX measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country LUX measure Limit product imports/exports was NEVER implemented\n", "In country LUX measure Border checks was NEVER implemented\n", "In country LUX measure International flights suspension was NEVER implemented\n", "In country LUX measure Surveillance and monitoring was implemented on 2020-04-10 00:00:00\n", "In country LUX measure Other public health measures enforced was implemented on 2020-04-08 00:00:00\n", "In country LUX measure Domestic travel restrictions was NEVER implemented\n", "In country LUX measure State of emergency declared was implemented on 2020-03-18 00:00:00\n", "In country LUX measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country LUX measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country LUX measure Checkpoints within the country was NEVER implemented\n", "In country LUX measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country LUX measure Curfews was NEVER implemented\n", "In country LUX measure Changes in prison-related policies was NEVER implemented\n", "In country LUX measure Public services closure was implemented on 2020-03-13 00:00:00\n", "In country LUX measure Military deployment was NEVER implemented\n", "In country LUX measure Full lockdown was NEVER implemented\n", "In country LUX measure Visa restrictions was NEVER implemented\n", "In country LUX measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LUX measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LUX measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LUX measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LUX measure Testing policy was NEVER implemented\n", "In country LUX measure Psychological assistance and medical social work was implemented on 2020-04-01 00:00:00\n", "In country LUX measure Mass population testing was NEVER implemented\n", "In country LUX measure testing policy was NEVER implemented\n", "In country LUX measure limit public gatherings was NEVER implemented\n", "In country LUX measure strengthening the public health system was NEVER implemented\n", "In country LUX measure Humanitarian exemptions was NEVER implemented\n", "In country LUX measure Complete border closure was NEVER implemented\n", "In country LUX measure curfews was NEVER implemented\n", "In country LUX measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MDG measure Health screenings in airports and border crossings was implemented on 2020-03-21 00:00:00\n", "In country MDG measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country MDG measure Awareness campaigns was NEVER implemented\n", "In country MDG measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country MDG measure Limit public gatherings was implemented on 2020-03-21 00:00:00\n", "In country MDG measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country MDG measure Schools closure was implemented on 2020-03-21 00:00:00\n", "In country MDG measure Strengthening the public health system was NEVER implemented\n", "In country MDG measure Limit product imports/exports was NEVER implemented\n", "In country MDG measure Border checks was NEVER implemented\n", "In country MDG measure International flights suspension was implemented on 2020-03-10 00:00:00\n", "In country MDG measure Surveillance and monitoring was NEVER implemented\n", "In country MDG measure Other public health measures enforced was NEVER implemented\n", "In country MDG measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country MDG measure State of emergency declared was implemented on 2020-03-21 00:00:00\n", "In country MDG measure General recommendations was NEVER implemented\n", "In country MDG measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country MDG measure Checkpoints within the country was NEVER implemented\n", "In country MDG measure Economic measures was implemented on 2020-03-26 00:00:00\n", "In country MDG measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country MDG measure Changes in prison-related policies was NEVER implemented\n", "In country MDG measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country MDG measure Military deployment was NEVER implemented\n", "In country MDG measure Full lockdown was NEVER implemented\n", "In country MDG measure Visa restrictions was implemented on 2020-03-20 00:00:00\n", "In country MDG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MDG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MDG measure Requirement to wear protective gear in public was implemented on 2020-04-05 00:00:00\n", "In country MDG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MDG measure Testing policy was implemented on 2020-04-05 00:00:00\n", "In country MDG measure Psychological assistance and medical social work was NEVER implemented\n", "In country MDG measure Mass population testing was NEVER implemented\n", "In country MDG measure testing policy was NEVER implemented\n", "In country MDG measure limit public gatherings was NEVER implemented\n", "In country MDG measure strengthening the public health system was NEVER implemented\n", "In country MDG measure Humanitarian exemptions was NEVER implemented\n", "In country MDG measure Complete border closure was NEVER implemented\n", "In country MDG measure curfews was NEVER implemented\n", "In country MDG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country MWI measure Health screenings in airports and border crossings was implemented on 2020-03-02 00:00:00\n", "In country MWI measure Introduction of isolation and quarantine policies was implemented on 2020-03-02 00:00:00\n", "In country MWI measure Awareness campaigns was NEVER implemented\n", "In country MWI measure Emergency administrative structures activated or established was implemented on 2020-04-09 00:00:00\n", "In country MWI measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country MWI measure Border closure was NEVER implemented\n", "In country MWI measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country MWI measure Strengthening the public health system was NEVER implemented\n", "In country MWI measure Limit product imports/exports was NEVER implemented\n", "In country MWI measure Border checks was NEVER implemented\n", "In country MWI measure International flights suspension was NEVER implemented\n", "In country MWI measure Surveillance and monitoring was NEVER implemented\n", "In country MWI measure Other public health measures enforced was implemented on 2020-04-09 00:00:00\n", "In country MWI measure Domestic travel restrictions was NEVER implemented\n", "In country MWI measure State of emergency declared was implemented on 2020-03-20 00:00:00\n", "In country MWI measure General recommendations was implemented on 2020-03-20 00:00:00\n", "In country MWI measure Partial lockdown was implemented on 2020-04-19 00:00:00\n", "In country MWI measure Checkpoints within the country was NEVER implemented\n", "In country MWI measure Economic measures was implemented on 2020-04-04 00:00:00\n", "In country MWI measure Curfews was NEVER implemented\n", "In country MWI measure Changes in prison-related policies was implemented on 2020-04-04 00:00:00\n", "In country MWI measure Public services closure was implemented on 2020-04-09 00:00:00\n", "In country MWI measure Military deployment was NEVER implemented\n", "In country MWI measure Full lockdown was NEVER implemented\n", "In country MWI measure Visa restrictions was implemented on 2020-03-20 00:00:00\n", "In country MWI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MWI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MWI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MWI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MWI measure Testing policy was NEVER implemented\n", "In country MWI measure Psychological assistance and medical social work was NEVER implemented\n", "In country MWI measure Mass population testing was NEVER implemented\n", "In country MWI measure testing policy was NEVER implemented\n", "In country MWI measure limit public gatherings was NEVER implemented\n", "In country MWI measure strengthening the public health system was NEVER implemented\n", "In country MWI measure Humanitarian exemptions was NEVER implemented\n", "In country MWI measure Complete border closure was NEVER implemented\n", "In country MWI measure curfews was NEVER implemented\n", "In country MWI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MYS measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country MYS measure Introduction of isolation and quarantine policies was implemented on 2020-03-18 00:00:00\n", "In country MYS measure Awareness campaigns was implemented on 2020-03-22 00:00:00\n", "In country MYS measure Emergency administrative structures activated or established was implemented on 2020-04-14 00:00:00\n", "In country MYS measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country MYS measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country MYS measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country MYS measure Strengthening the public health system was implemented on 2020-03-25 00:00:00\n", "In country MYS measure Limit product imports/exports was NEVER implemented\n", "In country MYS measure Border checks was implemented on 2020-03-15 00:00:00\n", "In country MYS measure International flights suspension was implemented on 2020-04-05 00:00:00\n", "In country MYS measure Surveillance and monitoring was implemented on 2020-03-21 00:00:00\n", "In country MYS measure Other public health measures enforced was NEVER implemented\n", "In country MYS measure Domestic travel restrictions was implemented on 2020-03-18 00:00:00\n", "In country MYS measure State of emergency declared was NEVER implemented\n", "In country MYS measure General recommendations was implemented on 2020-03-13 00:00:00\n", "In country MYS measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country MYS measure Checkpoints within the country was NEVER implemented\n", "In country MYS measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country MYS measure Curfews was implemented on 2020-03-25 00:00:00\n", "In country MYS measure Changes in prison-related policies was NEVER implemented\n", "In country MYS measure Public services closure was implemented on 2020-04-06 00:00:00\n", "In country MYS measure Military deployment was NEVER implemented\n", "In country MYS measure Full lockdown was implemented on 2020-03-27 00:00:00\n", "In country MYS measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country MYS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MYS measure Additional health/documents requirements upon arrival was implemented on 2020-03-18 00:00:00\n", "In country MYS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MYS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MYS measure Testing policy was NEVER implemented\n", "In country MYS measure Psychological assistance and medical social work was NEVER implemented\n", "In country MYS measure Mass population testing was NEVER implemented\n", "In country MYS measure testing policy was NEVER implemented\n", "In country MYS measure limit public gatherings was NEVER implemented\n", "In country MYS measure strengthening the public health system was NEVER implemented\n", "In country MYS measure Humanitarian exemptions was NEVER implemented\n", "In country MYS measure Complete border closure was NEVER implemented\n", "In country MYS measure curfews was NEVER implemented\n", "In country MYS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MDV measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country MDV measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country MDV measure Awareness campaigns was NEVER implemented\n", "In country MDV measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country MDV measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country MDV measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country MDV measure Schools closure was NEVER implemented\n", "In country MDV measure Strengthening the public health system was implemented on 2020-03-22 00:00:00\n", "In country MDV measure Limit product imports/exports was NEVER implemented\n", "In country MDV measure Border checks was NEVER implemented\n", "In country MDV measure International flights suspension was implemented on 2020-03-08 00:00:00\n", "In country MDV measure Surveillance and monitoring was NEVER implemented\n", "In country MDV measure Other public health measures enforced was NEVER implemented\n", "In country MDV measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country MDV measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country MDV measure General recommendations was NEVER implemented\n", "In country MDV measure Partial lockdown was NEVER implemented\n", "In country MDV measure Checkpoints within the country was NEVER implemented\n", "In country MDV measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country MDV measure Curfews was implemented on 2020-04-02 00:00:00\n", "In country MDV measure Changes in prison-related policies was NEVER implemented\n", "In country MDV measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country MDV measure Military deployment was NEVER implemented\n", "In country MDV measure Full lockdown was NEVER implemented\n", "In country MDV measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country MDV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MDV measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MDV measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MDV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MDV measure Testing policy was NEVER implemented\n", "In country MDV measure Psychological assistance and medical social work was NEVER implemented\n", "In country MDV measure Mass population testing was NEVER implemented\n", "In country MDV measure testing policy was NEVER implemented\n", "In country MDV measure limit public gatherings was NEVER implemented\n", "In country MDV measure strengthening the public health system was NEVER implemented\n", "In country MDV measure Humanitarian exemptions was NEVER implemented\n", "In country MDV measure Complete border closure was NEVER implemented\n", "In country MDV measure curfews was NEVER implemented\n", "In country MDV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MLI measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country MLI measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country MLI measure Awareness campaigns was NEVER implemented\n", "In country MLI measure Emergency administrative structures activated or established was implemented on 2020-01-04 00:00:00\n", "In country MLI measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country MLI measure Border closure was implemented on 2020-03-25 00:00:00\n", "In country MLI measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country MLI measure Strengthening the public health system was implemented on 2020-04-10 00:00:00\n", "In country MLI measure Limit product imports/exports was NEVER implemented\n", "In country MLI measure Border checks was NEVER implemented\n", "In country MLI measure International flights suspension was implemented on 2020-03-19 00:00:00\n", "In country MLI measure Surveillance and monitoring was NEVER implemented\n", "In country MLI measure Other public health measures enforced was NEVER implemented\n", "In country MLI measure Domestic travel restrictions was NEVER implemented\n", "In country MLI measure State of emergency declared was NEVER implemented\n", "In country MLI measure General recommendations was implemented on 2020-03-11 00:00:00\n", "In country MLI measure Partial lockdown was NEVER implemented\n", "In country MLI measure Checkpoints within the country was NEVER implemented\n", "In country MLI measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country MLI measure Curfews was implemented on 2020-03-26 00:00:00\n", "In country MLI measure Changes in prison-related policies was NEVER implemented\n", "In country MLI measure Public services closure was NEVER implemented\n", "In country MLI measure Military deployment was NEVER implemented\n", "In country MLI measure Full lockdown was NEVER implemented\n", "In country MLI measure Visa restrictions was NEVER implemented\n", "In country MLI measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MLI measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MLI measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MLI measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MLI measure Testing policy was NEVER implemented\n", "In country MLI measure Psychological assistance and medical social work was NEVER implemented\n", "In country MLI measure Mass population testing was NEVER implemented\n", "In country MLI measure testing policy was NEVER implemented\n", "In country MLI measure limit public gatherings was NEVER implemented\n", "In country MLI measure strengthening the public health system was NEVER implemented\n", "In country MLI measure Humanitarian exemptions was NEVER implemented\n", "In country MLI measure Complete border closure was NEVER implemented\n", "In country MLI measure curfews was NEVER implemented\n", "In country MLI measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MLT measure Health screenings in airports and border crossings was implemented on 2020-02-23 00:00:00\n", "In country MLT measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country MLT measure Awareness campaigns was NEVER implemented\n", "In country MLT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MLT measure Limit public gatherings was implemented on 2020-03-30 00:00:00\n", "In country MLT measure Border closure was NEVER implemented\n", "In country MLT measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country MLT measure Strengthening the public health system was implemented on 2020-03-28 00:00:00\n", "In country MLT measure Limit product imports/exports was NEVER implemented\n", "In country MLT measure Border checks was NEVER implemented\n", "In country MLT measure International flights suspension was implemented on 2020-03-08 00:00:00\n", "In country MLT measure Surveillance and monitoring was NEVER implemented\n", "In country MLT measure Other public health measures enforced was NEVER implemented\n", "In country MLT measure Domestic travel restrictions was implemented on 2020-03-31 00:00:00\n", "In country MLT measure State of emergency declared was NEVER implemented\n", "In country MLT measure General recommendations was implemented on 2020-01-19 00:00:00\n", "In country MLT measure Partial lockdown was NEVER implemented\n", "In country MLT measure Checkpoints within the country was NEVER implemented\n", "In country MLT measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country MLT measure Curfews was NEVER implemented\n", "In country MLT measure Changes in prison-related policies was NEVER implemented\n", "In country MLT measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country MLT measure Military deployment was implemented on UNKNOWN DATE\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country MLT measure Full lockdown was NEVER implemented\n", "In country MLT measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country MLT measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-04-05 00:00:00\n", "In country MLT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MLT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MLT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MLT measure Testing policy was implemented on 2020-03-02 00:00:00\n", "In country MLT measure Psychological assistance and medical social work was implemented on 2020-03-27 00:00:00\n", "In country MLT measure Mass population testing was NEVER implemented\n", "In country MLT measure testing policy was NEVER implemented\n", "In country MLT measure limit public gatherings was NEVER implemented\n", "In country MLT measure strengthening the public health system was NEVER implemented\n", "In country MLT measure Humanitarian exemptions was NEVER implemented\n", "In country MLT measure Complete border closure was NEVER implemented\n", "In country MLT measure curfews was NEVER implemented\n", "In country MLT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MHL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MHL measure Introduction of isolation and quarantine policies was implemented on 2020-03-10 00:00:00\n", "In country MHL measure Awareness campaigns was implemented on 2020-04-02 00:00:00\n", "In country MHL measure Emergency administrative structures activated or established was implemented on 2020-04-15 00:00:00\n", "In country MHL measure Limit public gatherings was NEVER implemented\n", "In country MHL measure Border closure was implemented on 2020-03-02 00:00:00\n", "In country MHL measure Schools closure was NEVER implemented\n", "In country MHL measure Strengthening the public health system was implemented on 2020-02-15 00:00:00\n", "In country MHL measure Limit product imports/exports was NEVER implemented\n", "In country MHL measure Border checks was NEVER implemented\n", "In country MHL measure International flights suspension was implemented on 2020-03-12 00:00:00\n", "In country MHL measure Surveillance and monitoring was implemented on 2020-03-30 00:00:00\n", "In country MHL measure Other public health measures enforced was NEVER implemented\n", "In country MHL measure Domestic travel restrictions was implemented on 2020-04-04 00:00:00\n", "In country MHL measure State of emergency declared was NEVER implemented\n", "In country MHL measure General recommendations was implemented on 2020-03-27 00:00:00\n", "In country MHL measure Partial lockdown was NEVER implemented\n", "In country MHL measure Checkpoints within the country was NEVER implemented\n", "In country MHL measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country MHL measure Curfews was NEVER implemented\n", "In country MHL measure Changes in prison-related policies was NEVER implemented\n", "In country MHL measure Public services closure was NEVER implemented\n", "In country MHL measure Military deployment was NEVER implemented\n", "In country MHL measure Full lockdown was NEVER implemented\n", "In country MHL measure Visa restrictions was implemented on 2020-01-31 00:00:00\n", "In country MHL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MHL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MHL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MHL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MHL measure Testing policy was NEVER implemented\n", "In country MHL measure Psychological assistance and medical social work was NEVER implemented\n", "In country MHL measure Mass population testing was NEVER implemented\n", "In country MHL measure testing policy was NEVER implemented\n", "In country MHL measure limit public gatherings was NEVER implemented\n", "In country MHL measure strengthening the public health system was NEVER implemented\n", "In country MHL measure Humanitarian exemptions was NEVER implemented\n", "In country MHL measure Complete border closure was NEVER implemented\n", "In country MHL measure curfews was NEVER implemented\n", "In country MHL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MRT measure Health screenings in airports and border crossings was implemented on 2020-02-05 00:00:00\n", "In country MRT measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country MRT measure Awareness campaigns was implemented on 2020-01-29 00:00:00\n", "In country MRT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MRT measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country MRT measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country MRT measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country MRT measure Strengthening the public health system was NEVER implemented\n", "In country MRT measure Limit product imports/exports was NEVER implemented\n", "In country MRT measure Border checks was implemented on 2020-03-20 00:00:00\n", "In country MRT measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country MRT measure Surveillance and monitoring was implemented on 2020-03-21 00:00:00\n", "In country MRT measure Other public health measures enforced was NEVER implemented\n", "In country MRT measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country MRT measure State of emergency declared was NEVER implemented\n", "In country MRT measure General recommendations was NEVER implemented\n", "In country MRT measure Partial lockdown was NEVER implemented\n", "In country MRT measure Checkpoints within the country was NEVER implemented\n", "In country MRT measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country MRT measure Curfews was implemented on 2020-03-19 00:00:00\n", "In country MRT measure Changes in prison-related policies was NEVER implemented\n", "In country MRT measure Public services closure was implemented on 2020-03-19 00:00:00\n", "In country MRT measure Military deployment was NEVER implemented\n", "In country MRT measure Full lockdown was NEVER implemented\n", "In country MRT measure Visa restrictions was NEVER implemented\n", "In country MRT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MRT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MRT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MRT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MRT measure Testing policy was NEVER implemented\n", "In country MRT measure Psychological assistance and medical social work was NEVER implemented\n", "In country MRT measure Mass population testing was NEVER implemented\n", "In country MRT measure testing policy was NEVER implemented\n", "In country MRT measure limit public gatherings was NEVER implemented\n", "In country MRT measure strengthening the public health system was NEVER implemented\n", "In country MRT measure Humanitarian exemptions was NEVER implemented\n", "In country MRT measure Complete border closure was NEVER implemented\n", "In country MRT measure curfews was NEVER implemented\n", "In country MRT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MUS measure Health screenings in airports and border crossings was implemented on 2020-02-28 00:00:00\n", "In country MUS measure Introduction of isolation and quarantine policies was implemented on 2020-03-04 00:00:00\n", "In country MUS measure Awareness campaigns was implemented on 2020-03-16 00:00:00\n", "In country MUS measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MUS measure Limit public gatherings was NEVER implemented\n", "In country MUS measure Border closure was NEVER implemented\n", "In country MUS measure Schools closure was implemented on 2020-03-19 00:00:00\n", "In country MUS measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country MUS measure Limit product imports/exports was NEVER implemented\n", "In country MUS measure Border checks was NEVER implemented\n", "In country MUS measure International flights suspension was NEVER implemented\n", "In country MUS measure Surveillance and monitoring was NEVER implemented\n", "In country MUS measure Other public health measures enforced was NEVER implemented\n", "In country MUS measure Domestic travel restrictions was NEVER implemented\n", "In country MUS measure State of emergency declared was NEVER implemented\n", "In country MUS measure General recommendations was implemented on 2020-03-24 00:00:00\n", "In country MUS measure Partial lockdown was implemented on 2020-03-20 00:00:00\n", "In country MUS measure Checkpoints within the country was NEVER implemented\n", "In country MUS measure Economic measures was NEVER implemented\n", "In country MUS measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country MUS measure Changes in prison-related policies was NEVER implemented\n", "In country MUS measure Public services closure was NEVER implemented\n", "In country MUS measure Military deployment was NEVER implemented\n", "In country MUS measure Full lockdown was NEVER implemented\n", "In country MUS measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country MUS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MUS measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MUS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MUS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MUS measure Testing policy was NEVER implemented\n", "In country MUS measure Psychological assistance and medical social work was NEVER implemented\n", "In country MUS measure Mass population testing was NEVER implemented\n", "In country MUS measure testing policy was NEVER implemented\n", "In country MUS measure limit public gatherings was NEVER implemented\n", "In country MUS measure strengthening the public health system was NEVER implemented\n", "In country MUS measure Humanitarian exemptions was NEVER implemented\n", "In country MUS measure Complete border closure was NEVER implemented\n", "In country MUS measure curfews was NEVER implemented\n", "In country MUS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MEX measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MEX measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country MEX measure Awareness campaigns was implemented on 2020-03-23 00:00:00\n", "In country MEX measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MEX measure Limit public gatherings was implemented on 2020-03-23 00:00:00\n", "In country MEX measure Border closure was implemented on 2020-03-21 00:00:00\n", "In country MEX measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country MEX measure Strengthening the public health system was implemented on 2020-03-24 00:00:00\n", "In country MEX measure Limit product imports/exports was NEVER implemented\n", "In country MEX measure Border checks was NEVER implemented\n", "In country MEX measure International flights suspension was NEVER implemented\n", "In country MEX measure Surveillance and monitoring was NEVER implemented\n", "In country MEX measure Other public health measures enforced was NEVER implemented\n", "In country MEX measure Domestic travel restrictions was NEVER implemented\n", "In country MEX measure State of emergency declared was implemented on 2020-03-30 00:00:00\n", "In country MEX measure General recommendations was implemented on 2020-03-23 00:00:00\n", "In country MEX measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country MEX measure Checkpoints within the country was NEVER implemented\n", "In country MEX measure Economic measures was NEVER implemented\n", "In country MEX measure Curfews was NEVER implemented\n", "In country MEX measure Changes in prison-related policies was NEVER implemented\n", "In country MEX measure Public services closure was implemented on 2020-03-26 00:00:00\n", "In country MEX measure Military deployment was NEVER implemented\n", "In country MEX measure Full lockdown was NEVER implemented\n", "In country MEX measure Visa restrictions was NEVER implemented\n", "In country MEX measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MEX measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MEX measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MEX measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MEX measure Testing policy was NEVER implemented\n", "In country MEX measure Psychological assistance and medical social work was NEVER implemented\n", "In country MEX measure Mass population testing was NEVER implemented\n", "In country MEX measure testing policy was NEVER implemented\n", "In country MEX measure limit public gatherings was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country MEX measure strengthening the public health system was NEVER implemented\n", "In country MEX measure Humanitarian exemptions was NEVER implemented\n", "In country MEX measure Complete border closure was NEVER implemented\n", "In country MEX measure curfews was NEVER implemented\n", "In country MEX measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country FSM measure Health screenings in airports and border crossings was implemented on 2020-03-25 00:00:00\n", "In country FSM measure Introduction of isolation and quarantine policies was implemented on 2020-03-25 00:00:00\n", "In country FSM measure Awareness campaigns was NEVER implemented\n", "In country FSM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country FSM measure Limit public gatherings was NEVER implemented\n", "In country FSM measure Border closure was implemented on 2020-03-22 00:00:00\n", "In country FSM measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country FSM measure Strengthening the public health system was implemented on 2020-04-15 00:00:00\n", "In country FSM measure Limit product imports/exports was NEVER implemented\n", "In country FSM measure Border checks was NEVER implemented\n", "In country FSM measure International flights suspension was implemented on 2020-03-22 00:00:00\n", "In country FSM measure Surveillance and monitoring was NEVER implemented\n", "In country FSM measure Other public health measures enforced was NEVER implemented\n", "In country FSM measure Domestic travel restrictions was NEVER implemented\n", "In country FSM measure State of emergency declared was implemented on 2020-02-05 00:00:00\n", "In country FSM measure General recommendations was NEVER implemented\n", "In country FSM measure Partial lockdown was NEVER implemented\n", "In country FSM measure Checkpoints within the country was NEVER implemented\n", "In country FSM measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country FSM measure Curfews was NEVER implemented\n", "In country FSM measure Changes in prison-related policies was NEVER implemented\n", "In country FSM measure Public services closure was NEVER implemented\n", "In country FSM measure Military deployment was NEVER implemented\n", "In country FSM measure Full lockdown was NEVER implemented\n", "In country FSM measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country FSM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country FSM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country FSM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country FSM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country FSM measure Testing policy was NEVER implemented\n", "In country FSM measure Psychological assistance and medical social work was NEVER implemented\n", "In country FSM measure Mass population testing was NEVER implemented\n", "In country FSM measure testing policy was NEVER implemented\n", "In country FSM measure limit public gatherings was NEVER implemented\n", "In country FSM measure strengthening the public health system was NEVER implemented\n", "In country FSM measure Humanitarian exemptions was NEVER implemented\n", "In country FSM measure Complete border closure was NEVER implemented\n", "In country FSM measure curfews was NEVER implemented\n", "In country FSM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MDA measure Health screenings in airports and border crossings was implemented on 2020-03-17 00:00:00\n", "In country MDA measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country MDA measure Awareness campaigns was NEVER implemented\n", "In country MDA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MDA measure Limit public gatherings was NEVER implemented\n", "In country MDA measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country MDA measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country MDA measure Strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country MDA measure Limit product imports/exports was NEVER implemented\n", "In country MDA measure Border checks was NEVER implemented\n", "In country MDA measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country MDA measure Surveillance and monitoring was NEVER implemented\n", "In country MDA measure Other public health measures enforced was NEVER implemented\n", "In country MDA measure Domestic travel restrictions was NEVER implemented\n", "In country MDA measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country MDA measure General recommendations was NEVER implemented\n", "In country MDA measure Partial lockdown was NEVER implemented\n", "In country MDA measure Checkpoints within the country was NEVER implemented\n", "In country MDA measure Economic measures was NEVER implemented\n", "In country MDA measure Curfews was NEVER implemented\n", "In country MDA measure Changes in prison-related policies was NEVER implemented\n", "In country MDA measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country MDA measure Military deployment was implemented on 2020-03-25 00:00:00\n", "In country MDA measure Full lockdown was implemented on 2020-03-25 00:00:00\n", "In country MDA measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country MDA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MDA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MDA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MDA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MDA measure Testing policy was NEVER implemented\n", "In country MDA measure Psychological assistance and medical social work was NEVER implemented\n", "In country MDA measure Mass population testing was NEVER implemented\n", "In country MDA measure testing policy was NEVER implemented\n", "In country MDA measure limit public gatherings was NEVER implemented\n", "In country MDA measure strengthening the public health system was NEVER implemented\n", "In country MDA measure Humanitarian exemptions was NEVER implemented\n", "In country MDA measure Complete border closure was NEVER implemented\n", "In country MDA measure curfews was NEVER implemented\n", "In country MDA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MNG measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MNG measure Introduction of isolation and quarantine policies was implemented on 2020-03-26 00:00:00\n", "In country MNG measure Awareness campaigns was implemented on 2020-03-11 00:00:00\n", "In country MNG measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MNG measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country MNG measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country MNG measure Schools closure was implemented on 2020-01-27 00:00:00\n", "In country MNG measure Strengthening the public health system was implemented on 2020-01-01 00:00:00\n", "In country MNG measure Limit product imports/exports was NEVER implemented\n", "In country MNG measure Border checks was NEVER implemented\n", "In country MNG measure International flights suspension was implemented on 2020-03-11 00:00:00\n", "In country MNG measure Surveillance and monitoring was implemented on 2020-03-19 00:00:00\n", "In country MNG measure Other public health measures enforced was NEVER implemented\n", "In country MNG measure Domestic travel restrictions was implemented on 2020-03-11 00:00:00\n", "In country MNG measure State of emergency declared was NEVER implemented\n", "In country MNG measure General recommendations was NEVER implemented\n", "In country MNG measure Partial lockdown was implemented on 2020-03-20 00:00:00\n", "In country MNG measure Checkpoints within the country was NEVER implemented\n", "In country MNG measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country MNG measure Curfews was NEVER implemented\n", "In country MNG measure Changes in prison-related policies was NEVER implemented\n", "In country MNG measure Public services closure was NEVER implemented\n", "In country MNG measure Military deployment was implemented on 2020-02-20 00:00:00\n", "In country MNG measure Full lockdown was NEVER implemented\n", "In country MNG measure Visa restrictions was implemented on 2020-03-11 00:00:00\n", "In country MNG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MNG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MNG measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MNG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MNG measure Testing policy was NEVER implemented\n", "In country MNG measure Psychological assistance and medical social work was NEVER implemented\n", "In country MNG measure Mass population testing was NEVER implemented\n", "In country MNG measure testing policy was NEVER implemented\n", "In country MNG measure limit public gatherings was NEVER implemented\n", "In country MNG measure strengthening the public health system was NEVER implemented\n", "In country MNG measure Humanitarian exemptions was NEVER implemented\n", "In country MNG measure Complete border closure was NEVER implemented\n", "In country MNG measure curfews was NEVER implemented\n", "In country MNG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MNE measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MNE measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country MNE measure Awareness campaigns was NEVER implemented\n", "In country MNE measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MNE measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country MNE measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country MNE measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country MNE measure Strengthening the public health system was implemented on 2020-03-25 00:00:00\n", "In country MNE measure Limit product imports/exports was NEVER implemented\n", "In country MNE measure Border checks was NEVER implemented\n", "In country MNE measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country MNE measure Surveillance and monitoring was implemented on 2020-03-19 00:00:00\n", "In country MNE measure Other public health measures enforced was NEVER implemented\n", "In country MNE measure Domestic travel restrictions was implemented on 2020-02-04 00:00:00\n", "In country MNE measure State of emergency declared was NEVER implemented\n", "In country MNE measure General recommendations was NEVER implemented\n", "In country MNE measure Partial lockdown was NEVER implemented\n", "In country MNE measure Checkpoints within the country was NEVER implemented\n", "In country MNE measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country MNE measure Curfews was implemented on 2020-03-30 00:00:00\n", "In country MNE measure Changes in prison-related policies was NEVER implemented\n", "In country MNE measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country MNE measure Military deployment was implemented on UNKNOWN DATE\n", "In country MNE measure Full lockdown was NEVER implemented\n", "In country MNE measure Visa restrictions was NEVER implemented\n", "In country MNE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MNE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MNE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MNE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MNE measure Testing policy was NEVER implemented\n", "In country MNE measure Psychological assistance and medical social work was NEVER implemented\n", "In country MNE measure Mass population testing was NEVER implemented\n", "In country MNE measure testing policy was NEVER implemented\n", "In country MNE measure limit public gatherings was NEVER implemented\n", "In country MNE measure strengthening the public health system was NEVER implemented\n", "In country MNE measure Humanitarian exemptions was NEVER implemented\n", "In country MNE measure Complete border closure was NEVER implemented\n", "In country MNE measure curfews was NEVER implemented\n", "In country MNE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MAR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MAR measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country MAR measure Awareness campaigns was NEVER implemented\n", "In country MAR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MAR measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country MAR measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country MAR measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country MAR measure Strengthening the public health system was implemented on 2020-03-15 00:00:00\n", "In country MAR measure Limit product imports/exports was NEVER implemented\n", "In country MAR measure Border checks was NEVER implemented\n", "In country MAR measure International flights suspension was implemented on 2020-03-15 00:00:00\n", "In country MAR measure Surveillance and monitoring was NEVER implemented\n", "In country MAR measure Other public health measures enforced was NEVER implemented\n", "In country MAR measure Domestic travel restrictions was NEVER implemented\n", "In country MAR measure State of emergency declared was NEVER implemented\n", "In country MAR measure General recommendations was NEVER implemented\n", "In country MAR measure Partial lockdown was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country MAR measure Checkpoints within the country was NEVER implemented\n", "In country MAR measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country MAR measure Curfews was NEVER implemented\n", "In country MAR measure Changes in prison-related policies was NEVER implemented\n", "In country MAR measure Public services closure was NEVER implemented\n", "In country MAR measure Military deployment was NEVER implemented\n", "In country MAR measure Full lockdown was NEVER implemented\n", "In country MAR measure Visa restrictions was NEVER implemented\n", "In country MAR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MAR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MAR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MAR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MAR measure Testing policy was NEVER implemented\n", "In country MAR measure Psychological assistance and medical social work was NEVER implemented\n", "In country MAR measure Mass population testing was NEVER implemented\n", "In country MAR measure testing policy was NEVER implemented\n", "In country MAR measure limit public gatherings was NEVER implemented\n", "In country MAR measure strengthening the public health system was NEVER implemented\n", "In country MAR measure Humanitarian exemptions was NEVER implemented\n", "In country MAR measure Complete border closure was NEVER implemented\n", "In country MAR measure curfews was NEVER implemented\n", "In country MAR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MOZ measure Health screenings in airports and border crossings was implemented on 2020-03-24 00:00:00\n", "In country MOZ measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country MOZ measure Awareness campaigns was implemented on 2020-04-09 00:00:00\n", "In country MOZ measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country MOZ measure Limit public gatherings was implemented on 2020-03-23 00:00:00\n", "In country MOZ measure Border closure was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country MOZ measure Strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure Limit product imports/exports was NEVER implemented\n", "In country MOZ measure Border checks was NEVER implemented\n", "In country MOZ measure International flights suspension was NEVER implemented\n", "In country MOZ measure Surveillance and monitoring was NEVER implemented\n", "In country MOZ measure Other public health measures enforced was implemented on 2020-04-13 00:00:00\n", "In country MOZ measure Domestic travel restrictions was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure State of emergency declared was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure General recommendations was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure Partial lockdown was NEVER implemented\n", "In country MOZ measure Checkpoints within the country was NEVER implemented\n", "In country MOZ measure Economic measures was implemented on 2020-03-23 00:00:00\n", "In country MOZ measure Curfews was implemented on 2020-04-01 00:00:00\n", "In country MOZ measure Changes in prison-related policies was implemented on 2020-03-30 00:00:00\n", "In country MOZ measure Public services closure was NEVER implemented\n", "In country MOZ measure Military deployment was NEVER implemented\n", "In country MOZ measure Full lockdown was NEVER implemented\n", "In country MOZ measure Visa restrictions was implemented on 2020-03-23 00:00:00\n", "In country MOZ measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MOZ measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MOZ measure Requirement to wear protective gear in public was implemented on 2020-04-08 00:00:00\n", "In country MOZ measure Amendments to funeral and burial regulations was implemented on 2020-04-08 00:00:00\n", "In country MOZ measure Testing policy was NEVER implemented\n", "In country MOZ measure Psychological assistance and medical social work was NEVER implemented\n", "In country MOZ measure Mass population testing was NEVER implemented\n", "In country MOZ measure testing policy was NEVER implemented\n", "In country MOZ measure limit public gatherings was NEVER implemented\n", "In country MOZ measure strengthening the public health system was NEVER implemented\n", "In country MOZ measure Humanitarian exemptions was NEVER implemented\n", "In country MOZ measure Complete border closure was NEVER implemented\n", "In country MOZ measure curfews was NEVER implemented\n", "In country MOZ measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MMR measure Health screenings in airports and border crossings was implemented on 2020-03-19 00:00:00\n", "In country MMR measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country MMR measure Awareness campaigns was implemented on 2020-04-04 00:00:00\n", "In country MMR measure Emergency administrative structures activated or established was implemented on 2020-03-13 00:00:00\n", "In country MMR measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country MMR measure Border closure was implemented on 2020-03-25 00:00:00\n", "In country MMR measure Schools closure was NEVER implemented\n", "In country MMR measure Strengthening the public health system was implemented on 2020-04-02 00:00:00\n", "In country MMR measure Limit product imports/exports was implemented on 2020-03-17 00:00:00\n", "In country MMR measure Border checks was NEVER implemented\n", "In country MMR measure International flights suspension was implemented on 2020-03-29 00:00:00\n", "In country MMR measure Surveillance and monitoring was implemented on 2020-03-21 00:00:00\n", "In country MMR measure Other public health measures enforced was NEVER implemented\n", "In country MMR measure Domestic travel restrictions was NEVER implemented\n", "In country MMR measure State of emergency declared was NEVER implemented\n", "In country MMR measure General recommendations was implemented on 2020-03-15 00:00:00\n", "In country MMR measure Partial lockdown was NEVER implemented\n", "In country MMR measure Checkpoints within the country was NEVER implemented\n", "In country MMR measure Economic measures was implemented on 2020-02-24 00:00:00\n", "In country MMR measure Curfews was NEVER implemented\n", "In country MMR measure Changes in prison-related policies was NEVER implemented\n", "In country MMR measure Public services closure was NEVER implemented\n", "In country MMR measure Military deployment was NEVER implemented\n", "In country MMR measure Full lockdown was NEVER implemented\n", "In country MMR measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country MMR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MMR measure Additional health/documents requirements upon arrival was implemented on 2020-03-25 00:00:00\n", "In country MMR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MMR measure Amendments to funeral and burial regulations was implemented on 2020-04-04 00:00:00\n", "In country MMR measure Testing policy was NEVER implemented\n", "In country MMR measure Psychological assistance and medical social work was NEVER implemented\n", "In country MMR measure Mass population testing was NEVER implemented\n", "In country MMR measure testing policy was NEVER implemented\n", "In country MMR measure limit public gatherings was NEVER implemented\n", "In country MMR measure strengthening the public health system was NEVER implemented\n", "In country MMR measure Humanitarian exemptions was NEVER implemented\n", "In country MMR measure Complete border closure was NEVER implemented\n", "In country MMR measure curfews was NEVER implemented\n", "In country MMR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NAM measure Health screenings in airports and border crossings was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country NAM measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country NAM measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country NAM measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country NAM measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Limit product imports/exports was NEVER implemented\n", "In country NAM measure Border checks was NEVER implemented\n", "In country NAM measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country NAM measure Surveillance and monitoring was NEVER implemented\n", "In country NAM measure Other public health measures enforced was NEVER implemented\n", "In country NAM measure Domestic travel restrictions was implemented on 2020-03-14 00:00:00\n", "In country NAM measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country NAM measure General recommendations was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country NAM measure Checkpoints within the country was NEVER implemented\n", "In country NAM measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country NAM measure Curfews was NEVER implemented\n", "In country NAM measure Changes in prison-related policies was NEVER implemented\n", "In country NAM measure Public services closure was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Military deployment was NEVER implemented\n", "In country NAM measure Full lockdown was NEVER implemented\n", "In country NAM measure Visa restrictions was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NAM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NAM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NAM measure Amendments to funeral and burial regulations was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Testing policy was NEVER implemented\n", "In country NAM measure Psychological assistance and medical social work was implemented on 2020-03-17 00:00:00\n", "In country NAM measure Mass population testing was NEVER implemented\n", "In country NAM measure testing policy was NEVER implemented\n", "In country NAM measure limit public gatherings was NEVER implemented\n", "In country NAM measure strengthening the public health system was NEVER implemented\n", "In country NAM measure Humanitarian exemptions was NEVER implemented\n", "In country NAM measure Complete border closure was NEVER implemented\n", "In country NAM measure curfews was NEVER implemented\n", "In country NAM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NRU measure Health screenings in airports and border crossings was implemented on 2020-03-16 00:00:00\n", "In country NRU measure Introduction of isolation and quarantine policies was implemented on 2020-03-20 00:00:00\n", "In country NRU measure Awareness campaigns was implemented on 2020-04-08 00:00:00\n", "In country NRU measure Emergency administrative structures activated or established was implemented on 2020-03-21 00:00:00\n", "In country NRU measure Limit public gatherings was NEVER implemented\n", "In country NRU measure Border closure was NEVER implemented\n", "In country NRU measure Schools closure was NEVER implemented\n", "In country NRU measure Strengthening the public health system was implemented on 2020-03-24 00:00:00\n", "In country NRU measure Limit product imports/exports was NEVER implemented\n", "In country NRU measure Border checks was NEVER implemented\n", "In country NRU measure International flights suspension was NEVER implemented\n", "In country NRU measure Surveillance and monitoring was NEVER implemented\n", "In country NRU measure Other public health measures enforced was NEVER implemented\n", "In country NRU measure Domestic travel restrictions was NEVER implemented\n", "In country NRU measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country NRU measure General recommendations was NEVER implemented\n", "In country NRU measure Partial lockdown was NEVER implemented\n", "In country NRU measure Checkpoints within the country was NEVER implemented\n", "In country NRU measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country NRU measure Curfews was NEVER implemented\n", "In country NRU measure Changes in prison-related policies was NEVER implemented\n", "In country NRU measure Public services closure was NEVER implemented\n", "In country NRU measure Military deployment was NEVER implemented\n", "In country NRU measure Full lockdown was NEVER implemented\n", "In country NRU measure Visa restrictions was implemented on 2020-03-02 00:00:00\n", "In country NRU measure Lockdown of refugee/idp camps or other minorities was implemented on 2020-04-02 00:00:00\n", "In country NRU measure Additional health/documents requirements upon arrival was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country NRU measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NRU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NRU measure Testing policy was NEVER implemented\n", "In country NRU measure Psychological assistance and medical social work was NEVER implemented\n", "In country NRU measure Mass population testing was NEVER implemented\n", "In country NRU measure testing policy was NEVER implemented\n", "In country NRU measure limit public gatherings was NEVER implemented\n", "In country NRU measure strengthening the public health system was NEVER implemented\n", "In country NRU measure Humanitarian exemptions was NEVER implemented\n", "In country NRU measure Complete border closure was NEVER implemented\n", "In country NRU measure curfews was NEVER implemented\n", "In country NRU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NPL measure Health screenings in airports and border crossings was implemented on 2020-03-23 00:00:00\n", "In country NPL measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country NPL measure Awareness campaigns was NEVER implemented\n", "In country NPL measure Emergency administrative structures activated or established was NEVER implemented\n", "In country NPL measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country NPL measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country NPL measure Schools closure was NEVER implemented\n", "In country NPL measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country NPL measure Limit product imports/exports was implemented on 2020-03-24 00:00:00\n", "In country NPL measure Border checks was NEVER implemented\n", "In country NPL measure International flights suspension was implemented on 2020-03-22 00:00:00\n", "In country NPL measure Surveillance and monitoring was NEVER implemented\n", "In country NPL measure Other public health measures enforced was NEVER implemented\n", "In country NPL measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country NPL measure State of emergency declared was NEVER implemented\n", "In country NPL measure General recommendations was implemented on 2020-03-05 00:00:00\n", "In country NPL measure Partial lockdown was implemented on 2020-03-29 00:00:00\n", "In country NPL measure Checkpoints within the country was NEVER implemented\n", "In country NPL measure Economic measures was implemented on 2020-03-29 00:00:00\n", "In country NPL measure Curfews was NEVER implemented\n", "In country NPL measure Changes in prison-related policies was NEVER implemented\n", "In country NPL measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country NPL measure Military deployment was NEVER implemented\n", "In country NPL measure Full lockdown was implemented on 2020-03-24 00:00:00\n", "In country NPL measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country NPL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NPL measure Additional health/documents requirements upon arrival was implemented on 2020-03-13 00:00:00\n", "In country NPL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NPL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NPL measure Testing policy was implemented on 2020-04-10 00:00:00\n", "In country NPL measure Psychological assistance and medical social work was NEVER implemented\n", "In country NPL measure Mass population testing was NEVER implemented\n", "In country NPL measure testing policy was NEVER implemented\n", "In country NPL measure limit public gatherings was NEVER implemented\n", "In country NPL measure strengthening the public health system was NEVER implemented\n", "In country NPL measure Humanitarian exemptions was NEVER implemented\n", "In country NPL measure Complete border closure was NEVER implemented\n", "In country NPL measure curfews was NEVER implemented\n", "In country NPL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NLD measure Health screenings in airports and border crossings was NEVER implemented\n", "In country NLD measure Introduction of isolation and quarantine policies was implemented on 2020-03-06 00:00:00\n", "In country NLD measure Awareness campaigns was NEVER implemented\n", "In country NLD measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country NLD measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country NLD measure Border closure was NEVER implemented\n", "In country NLD measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country NLD measure Strengthening the public health system was NEVER implemented\n", "In country NLD measure Limit product imports/exports was NEVER implemented\n", "In country NLD measure Border checks was NEVER implemented\n", "In country NLD measure International flights suspension was NEVER implemented\n", "In country NLD measure Surveillance and monitoring was NEVER implemented\n", "In country NLD measure Other public health measures enforced was NEVER implemented\n", "In country NLD measure Domestic travel restrictions was NEVER implemented\n", "In country NLD measure State of emergency declared was NEVER implemented\n", "In country NLD measure General recommendations was implemented on 2020-03-15 00:00:00\n", "In country NLD measure Partial lockdown was NEVER implemented\n", "In country NLD measure Checkpoints within the country was NEVER implemented\n", "In country NLD measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country NLD measure Curfews was NEVER implemented\n", "In country NLD measure Changes in prison-related policies was NEVER implemented\n", "In country NLD measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country NLD measure Military deployment was NEVER implemented\n", "In country NLD measure Full lockdown was NEVER implemented\n", "In country NLD measure Visa restrictions was NEVER implemented\n", "In country NLD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NLD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NLD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NLD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NLD measure Testing policy was NEVER implemented\n", "In country NLD measure Psychological assistance and medical social work was NEVER implemented\n", "In country NLD measure Mass population testing was NEVER implemented\n", "In country NLD measure testing policy was NEVER implemented\n", "In country NLD measure limit public gatherings was NEVER implemented\n", "In country NLD measure strengthening the public health system was NEVER implemented\n", "In country NLD measure Humanitarian exemptions was NEVER implemented\n", "In country NLD measure Complete border closure was NEVER implemented\n", "In country NLD measure curfews was NEVER implemented\n", "In country NLD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NZL measure Health screenings in airports and border crossings was implemented on 2020-04-10 00:00:00\n", "In country NZL measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country NZL measure Awareness campaigns was implemented on 2020-03-24 00:00:00\n", "In country NZL measure Emergency administrative structures activated or established was implemented on 2020-03-21 00:00:00\n", "In country NZL measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country NZL measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country NZL measure Schools closure was implemented on 2020-03-25 00:00:00\n", "In country NZL measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country NZL measure Limit product imports/exports was NEVER implemented\n", "In country NZL measure Border checks was NEVER implemented\n", "In country NZL measure International flights suspension was implemented on 2020-04-07 00:00:00\n", "In country NZL measure Surveillance and monitoring was NEVER implemented\n", "In country NZL measure Other public health measures enforced was NEVER implemented\n", "In country NZL measure Domestic travel restrictions was implemented on 2020-03-21 00:00:00\n", "In country NZL measure State of emergency declared was implemented on 2020-03-25 00:00:00\n", "In country NZL measure General recommendations was implemented on 2020-03-19 00:00:00\n", "In country NZL measure Partial lockdown was implemented on 2020-03-23 00:00:00\n", "In country NZL measure Checkpoints within the country was NEVER implemented\n", "In country NZL measure Economic measures was implemented on 2020-03-20 00:00:00\n", "In country NZL measure Curfews was NEVER implemented\n", "In country NZL measure Changes in prison-related policies was NEVER implemented\n", "In country NZL measure Public services closure was implemented on 2020-03-25 00:00:00\n", "In country NZL measure Military deployment was NEVER implemented\n", "In country NZL measure Full lockdown was NEVER implemented\n", "In country NZL measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country NZL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NZL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NZL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NZL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NZL measure Testing policy was implemented on 2020-04-01 00:00:00\n", "In country NZL measure Psychological assistance and medical social work was implemented on 2020-04-07 00:00:00\n", "In country NZL measure Mass population testing was NEVER implemented\n", "In country NZL measure testing policy was NEVER implemented\n", "In country NZL measure limit public gatherings was NEVER implemented\n", "In country NZL measure strengthening the public health system was NEVER implemented\n", "In country NZL measure Humanitarian exemptions was NEVER implemented\n", "In country NZL measure Complete border closure was NEVER implemented\n", "In country NZL measure curfews was NEVER implemented\n", "In country NZL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NIC measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country NIC measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country NIC measure Awareness campaigns was implemented on 2020-03-30 00:00:00\n", "In country NIC measure Emergency administrative structures activated or established was NEVER implemented\n", "In country NIC measure Limit public gatherings was NEVER implemented\n", "In country NIC measure Border closure was implemented on 2020-03-31 00:00:00\n", "In country NIC measure Schools closure was NEVER implemented\n", "In country NIC measure Strengthening the public health system was NEVER implemented\n", "In country NIC measure Limit product imports/exports was NEVER implemented\n", "In country NIC measure Border checks was NEVER implemented\n", "In country NIC measure International flights suspension was implemented on 2020-04-09 00:00:00\n", "In country NIC measure Surveillance and monitoring was NEVER implemented\n", "In country NIC measure Other public health measures enforced was NEVER implemented\n", "In country NIC measure Domestic travel restrictions was NEVER implemented\n", "In country NIC measure State of emergency declared was NEVER implemented\n", "In country NIC measure General recommendations was implemented on 2020-03-25 00:00:00\n", "In country NIC measure Partial lockdown was NEVER implemented\n", "In country NIC measure Checkpoints within the country was NEVER implemented\n", "In country NIC measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country NIC measure Curfews was NEVER implemented\n", "In country NIC measure Changes in prison-related policies was NEVER implemented\n", "In country NIC measure Public services closure was NEVER implemented\n", "In country NIC measure Military deployment was NEVER implemented\n", "In country NIC measure Full lockdown was NEVER implemented\n", "In country NIC measure Visa restrictions was NEVER implemented\n", "In country NIC measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NIC measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NIC measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NIC measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NIC measure Testing policy was NEVER implemented\n", "In country NIC measure Psychological assistance and medical social work was NEVER implemented\n", "In country NIC measure Mass population testing was NEVER implemented\n", "In country NIC measure testing policy was NEVER implemented\n", "In country NIC measure limit public gatherings was NEVER implemented\n", "In country NIC measure strengthening the public health system was NEVER implemented\n", "In country NIC measure Humanitarian exemptions was NEVER implemented\n", "In country NIC measure Complete border closure was NEVER implemented\n", "In country NIC measure curfews was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country NIC measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NER measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country NER measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country NER measure Awareness campaigns was NEVER implemented\n", "In country NER measure Emergency administrative structures activated or established was NEVER implemented\n", "In country NER measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country NER measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country NER measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country NER measure Strengthening the public health system was implemented on 2020-03-27 00:00:00\n", "In country NER measure Limit product imports/exports was NEVER implemented\n", "In country NER measure Border checks was NEVER implemented\n", "In country NER measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country NER measure Surveillance and monitoring was NEVER implemented\n", "In country NER measure Other public health measures enforced was NEVER implemented\n", "In country NER measure Domestic travel restrictions was NEVER implemented\n", "In country NER measure State of emergency declared was implemented on 2020-03-27 00:00:00\n", "In country NER measure General recommendations was implemented on 2020-03-15 00:00:00\n", "In country NER measure Partial lockdown was NEVER implemented\n", "In country NER measure Checkpoints within the country was NEVER implemented\n", "In country NER measure Economic measures was implemented on 2020-03-18 00:00:00\n", "In country NER measure Curfews was implemented on 2020-03-28 00:00:00\n", "In country NER measure Changes in prison-related policies was implemented on 2020-03-27 00:00:00\n", "In country NER measure Public services closure was NEVER implemented\n", "In country NER measure Military deployment was NEVER implemented\n", "In country NER measure Full lockdown was NEVER implemented\n", "In country NER measure Visa restrictions was NEVER implemented\n", "In country NER measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NER measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NER measure Requirement to wear protective gear in public was implemented on 2020-04-10 00:00:00\n", "In country NER measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NER measure Testing policy was NEVER implemented\n", "In country NER measure Psychological assistance and medical social work was NEVER implemented\n", "In country NER measure Mass population testing was NEVER implemented\n", "In country NER measure testing policy was NEVER implemented\n", "In country NER measure limit public gatherings was NEVER implemented\n", "In country NER measure strengthening the public health system was NEVER implemented\n", "In country NER measure Humanitarian exemptions was NEVER implemented\n", "In country NER measure Complete border closure was NEVER implemented\n", "In country NER measure curfews was NEVER implemented\n", "In country NER measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NGA measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country NGA measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country NGA measure Awareness campaigns was NEVER implemented\n", "In country NGA measure Emergency administrative structures activated or established was implemented on 2020-04-04 00:00:00\n", "In country NGA measure Limit public gatherings was implemented on 2020-03-18 00:00:00\n", "In country NGA measure Border closure was NEVER implemented\n", "In country NGA measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country NGA measure Strengthening the public health system was NEVER implemented\n", "In country NGA measure Limit product imports/exports was NEVER implemented\n", "In country NGA measure Border checks was NEVER implemented\n", "In country NGA measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country NGA measure Surveillance and monitoring was NEVER implemented\n", "In country NGA measure Other public health measures enforced was NEVER implemented\n", "In country NGA measure Domestic travel restrictions was implemented on 2020-03-30 00:00:00\n", "In country NGA measure State of emergency declared was NEVER implemented\n", "In country NGA measure General recommendations was implemented on 2020-03-18 00:00:00\n", "In country NGA measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country NGA measure Checkpoints within the country was NEVER implemented\n", "In country NGA measure Economic measures was NEVER implemented\n", "In country NGA measure Curfews was NEVER implemented\n", "In country NGA measure Changes in prison-related policies was implemented on 2020-04-09 00:00:00\n", "In country NGA measure Public services closure was NEVER implemented\n", "In country NGA measure Military deployment was NEVER implemented\n", "In country NGA measure Full lockdown was NEVER implemented\n", "In country NGA measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country NGA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NGA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NGA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NGA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NGA measure Testing policy was NEVER implemented\n", "In country NGA measure Psychological assistance and medical social work was NEVER implemented\n", "In country NGA measure Mass population testing was NEVER implemented\n", "In country NGA measure testing policy was NEVER implemented\n", "In country NGA measure limit public gatherings was NEVER implemented\n", "In country NGA measure strengthening the public health system was NEVER implemented\n", "In country NGA measure Humanitarian exemptions was NEVER implemented\n", "In country NGA measure Complete border closure was NEVER implemented\n", "In country NGA measure curfews was NEVER implemented\n", "In country NGA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country MKD measure Health screenings in airports and border crossings was NEVER implemented\n", "In country MKD measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country MKD measure Awareness campaigns was NEVER implemented\n", "In country MKD measure Emergency administrative structures activated or established was NEVER implemented\n", "In country MKD measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country MKD measure Border closure was implemented on 2020-03-13 00:00:00\n", "In country MKD measure Schools closure was implemented on 2020-03-10 00:00:00\n", "In country MKD measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country MKD measure Limit product imports/exports was NEVER implemented\n", "In country MKD measure Border checks was NEVER implemented\n", "In country MKD measure International flights suspension was NEVER implemented\n", "In country MKD measure Surveillance and monitoring was NEVER implemented\n", "In country MKD measure Other public health measures enforced was NEVER implemented\n", "In country MKD measure Domestic travel restrictions was implemented on 2020-03-22 00:00:00\n", "In country MKD measure State of emergency declared was implemented on 2020-03-18 00:00:00\n", "In country MKD measure General recommendations was NEVER implemented\n", "In country MKD measure Partial lockdown was NEVER implemented\n", "In country MKD measure Checkpoints within the country was NEVER implemented\n", "In country MKD measure Economic measures was NEVER implemented\n", "In country MKD measure Curfews was implemented on 2020-03-24 00:00:00\n", "In country MKD measure Changes in prison-related policies was NEVER implemented\n", "In country MKD measure Public services closure was NEVER implemented\n", "In country MKD measure Military deployment was NEVER implemented\n", "In country MKD measure Full lockdown was NEVER implemented\n", "In country MKD measure Visa restrictions was implemented on 2020-03-13 00:00:00\n", "In country MKD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country MKD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country MKD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country MKD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country MKD measure Testing policy was NEVER implemented\n", "In country MKD measure Psychological assistance and medical social work was NEVER implemented\n", "In country MKD measure Mass population testing was NEVER implemented\n", "In country MKD measure testing policy was NEVER implemented\n", "In country MKD measure limit public gatherings was NEVER implemented\n", "In country MKD measure strengthening the public health system was NEVER implemented\n", "In country MKD measure Humanitarian exemptions was NEVER implemented\n", "In country MKD measure Complete border closure was NEVER implemented\n", "In country MKD measure curfews was NEVER implemented\n", "In country MKD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country NOR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country NOR measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country NOR measure Awareness campaigns was implemented on 2020-03-05 00:00:00\n", "In country NOR measure Emergency administrative structures activated or established was implemented on 2020-03-21 00:00:00\n", "In country NOR measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country NOR measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country NOR measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country NOR measure Strengthening the public health system was implemented on 2020-03-14 00:00:00\n", "In country NOR measure Limit product imports/exports was NEVER implemented\n", "In country NOR measure Border checks was implemented on 2020-03-15 00:00:00\n", "In country NOR measure International flights suspension was NEVER implemented\n", "In country NOR measure Surveillance and monitoring was NEVER implemented\n", "In country NOR measure Other public health measures enforced was NEVER implemented\n", "In country NOR measure Domestic travel restrictions was implemented on 2020-03-19 00:00:00\n", "In country NOR measure State of emergency declared was NEVER implemented\n", "In country NOR measure General recommendations was implemented on 2020-03-14 00:00:00\n", "In country NOR measure Partial lockdown was NEVER implemented\n", "In country NOR measure Checkpoints within the country was NEVER implemented\n", "In country NOR measure Economic measures was implemented on 2020-03-16 00:00:00\n", "In country NOR measure Curfews was NEVER implemented\n", "In country NOR measure Changes in prison-related policies was implemented on 2020-04-06 00:00:00\n", "In country NOR measure Public services closure was implemented on 2020-04-07 00:00:00\n", "In country NOR measure Military deployment was NEVER implemented\n", "In country NOR measure Full lockdown was NEVER implemented\n", "In country NOR measure Visa restrictions was NEVER implemented\n", "In country NOR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country NOR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country NOR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country NOR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country NOR measure Testing policy was NEVER implemented\n", "In country NOR measure Psychological assistance and medical social work was NEVER implemented\n", "In country NOR measure Mass population testing was NEVER implemented\n", "In country NOR measure testing policy was NEVER implemented\n", "In country NOR measure limit public gatherings was NEVER implemented\n", "In country NOR measure strengthening the public health system was implemented on 2020-03-30 00:00:00\n", "In country NOR measure Humanitarian exemptions was NEVER implemented\n", "In country NOR measure Complete border closure was NEVER implemented\n", "In country NOR measure curfews was NEVER implemented\n", "In country NOR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country OMN measure Health screenings in airports and border crossings was NEVER implemented\n", "In country OMN measure Introduction of isolation and quarantine policies was implemented on 2020-03-09 00:00:00\n", "In country OMN measure Awareness campaigns was NEVER implemented\n", "In country OMN measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country OMN measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country OMN measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country OMN measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country OMN measure Strengthening the public health system was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country OMN measure Limit product imports/exports was NEVER implemented\n", "In country OMN measure Border checks was implemented on 2020-01-04 00:00:00\n", "In country OMN measure International flights suspension was implemented on 2020-03-12 00:00:00\n", "In country OMN measure Surveillance and monitoring was implemented on 2020-04-06 00:00:00\n", "In country OMN measure Other public health measures enforced was NEVER implemented\n", "In country OMN measure Domestic travel restrictions was implemented on 2020-03-20 00:00:00\n", "In country OMN measure State of emergency declared was NEVER implemented\n", "In country OMN measure General recommendations was NEVER implemented\n", "In country OMN measure Partial lockdown was NEVER implemented\n", "In country OMN measure Checkpoints within the country was NEVER implemented\n", "In country OMN measure Economic measures was NEVER implemented\n", "In country OMN measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country OMN measure Changes in prison-related policies was NEVER implemented\n", "In country OMN measure Public services closure was implemented on 2020-03-20 00:00:00\n", "In country OMN measure Military deployment was NEVER implemented\n", "In country OMN measure Full lockdown was NEVER implemented\n", "In country OMN measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country OMN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country OMN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country OMN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country OMN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country OMN measure Testing policy was NEVER implemented\n", "In country OMN measure Psychological assistance and medical social work was NEVER implemented\n", "In country OMN measure Mass population testing was NEVER implemented\n", "In country OMN measure testing policy was NEVER implemented\n", "In country OMN measure limit public gatherings was NEVER implemented\n", "In country OMN measure strengthening the public health system was NEVER implemented\n", "In country OMN measure Humanitarian exemptions was NEVER implemented\n", "In country OMN measure Complete border closure was NEVER implemented\n", "In country OMN measure curfews was NEVER implemented\n", "In country OMN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PAK measure Health screenings in airports and border crossings was implemented on 2020-03-06 00:00:00\n", "In country PAK measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country PAK measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country PAK measure Emergency administrative structures activated or established was implemented on 2020-02-12 00:00:00\n", "In country PAK measure Limit public gatherings was NEVER implemented\n", "In country PAK measure Border closure was implemented on 2020-02-28 00:00:00\n", "In country PAK measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country PAK measure Strengthening the public health system was NEVER implemented\n", "In country PAK measure Limit product imports/exports was NEVER implemented\n", "In country PAK measure Border checks was NEVER implemented\n", "In country PAK measure International flights suspension was implemented on 2020-02-28 00:00:00\n", "In country PAK measure Surveillance and monitoring was implemented on 2020-03-19 00:00:00\n", "In country PAK measure Other public health measures enforced was NEVER implemented\n", "In country PAK measure Domestic travel restrictions was NEVER implemented\n", "In country PAK measure State of emergency declared was NEVER implemented\n", "In country PAK measure General recommendations was implemented on 2020-02-24 00:00:00\n", "In country PAK measure Partial lockdown was NEVER implemented\n", "In country PAK measure Checkpoints within the country was NEVER implemented\n", "In country PAK measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country PAK measure Curfews was NEVER implemented\n", "In country PAK measure Changes in prison-related policies was NEVER implemented\n", "In country PAK measure Public services closure was NEVER implemented\n", "In country PAK measure Military deployment was NEVER implemented\n", "In country PAK measure Full lockdown was NEVER implemented\n", "In country PAK measure Visa restrictions was NEVER implemented\n", "In country PAK measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PAK measure Additional health/documents requirements upon arrival was implemented on 2020-02-20 00:00:00\n", "In country PAK measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PAK measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PAK measure Testing policy was NEVER implemented\n", "In country PAK measure Psychological assistance and medical social work was NEVER implemented\n", "In country PAK measure Mass population testing was NEVER implemented\n", "In country PAK measure testing policy was NEVER implemented\n", "In country PAK measure limit public gatherings was NEVER implemented\n", "In country PAK measure strengthening the public health system was NEVER implemented\n", "In country PAK measure Humanitarian exemptions was NEVER implemented\n", "In country PAK measure Complete border closure was NEVER implemented\n", "In country PAK measure curfews was NEVER implemented\n", "In country PAK measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PLW measure Health screenings in airports and border crossings was implemented on 2020-01-23 00:00:00\n", "In country PLW measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country PLW measure Awareness campaigns was implemented on 2020-04-09 00:00:00\n", "In country PLW measure Emergency administrative structures activated or established was implemented on 2020-01-22 00:00:00\n", "In country PLW measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country PLW measure Border closure was implemented on 2020-03-17 00:00:00\n", "In country PLW measure Schools closure was implemented on 2020-03-23 00:00:00\n", "In country PLW measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country PLW measure Limit product imports/exports was NEVER implemented\n", "In country PLW measure Border checks was NEVER implemented\n", "In country PLW measure International flights suspension was implemented on 2020-03-26 00:00:00\n", "In country PLW measure Surveillance and monitoring was NEVER implemented\n", "In country PLW measure Other public health measures enforced was NEVER implemented\n", "In country PLW measure Domestic travel restrictions was NEVER implemented\n", "In country PLW measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country PLW measure General recommendations was implemented on 2020-03-20 00:00:00\n", "In country PLW measure Partial lockdown was NEVER implemented\n", "In country PLW measure Checkpoints within the country was NEVER implemented\n", "In country PLW measure Economic measures was NEVER implemented\n", "In country PLW measure Curfews was NEVER implemented\n", "In country PLW measure Changes in prison-related policies was NEVER implemented\n", "In country PLW measure Public services closure was NEVER implemented\n", "In country PLW measure Military deployment was NEVER implemented\n", "In country PLW measure Full lockdown was NEVER implemented\n", "In country PLW measure Visa restrictions was implemented on 2020-03-10 00:00:00\n", "In country PLW measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PLW measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PLW measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PLW measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PLW measure Testing policy was NEVER implemented\n", "In country PLW measure Psychological assistance and medical social work was NEVER implemented\n", "In country PLW measure Mass population testing was NEVER implemented\n", "In country PLW measure testing policy was NEVER implemented\n", "In country PLW measure limit public gatherings was NEVER implemented\n", "In country PLW measure strengthening the public health system was NEVER implemented\n", "In country PLW measure Humanitarian exemptions was NEVER implemented\n", "In country PLW measure Complete border closure was NEVER implemented\n", "In country PLW measure curfews was NEVER implemented\n", "In country PLW measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PSE measure Health screenings in airports and border crossings was NEVER implemented\n", "In country PSE measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country PSE measure Awareness campaigns was NEVER implemented\n", "In country PSE measure Emergency administrative structures activated or established was implemented on 2020-03-22 00:00:00\n", "In country PSE measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country PSE measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country PSE measure Schools closure was implemented on 2020-03-07 00:00:00\n", "In country PSE measure Strengthening the public health system was implemented on 2020-03-11 00:00:00\n", "In country PSE measure Limit product imports/exports was NEVER implemented\n", "In country PSE measure Border checks was NEVER implemented\n", "In country PSE measure International flights suspension was NEVER implemented\n", "In country PSE measure Surveillance and monitoring was NEVER implemented\n", "In country PSE measure Other public health measures enforced was NEVER implemented\n", "In country PSE measure Domestic travel restrictions was implemented on 2020-03-22 00:00:00\n", "In country PSE measure State of emergency declared was implemented on 2020-03-05 00:00:00\n", "In country PSE measure General recommendations was NEVER implemented\n", "In country PSE measure Partial lockdown was implemented on 2020-03-07 00:00:00\n", "In country PSE measure Checkpoints within the country was NEVER implemented\n", "In country PSE measure Economic measures was implemented on 2020-03-07 00:00:00\n", "In country PSE measure Curfews was NEVER implemented\n", "In country PSE measure Changes in prison-related policies was implemented on 2020-03-23 00:00:00\n", "In country PSE measure Public services closure was implemented on 2020-03-21 00:00:00\n", "In country PSE measure Military deployment was NEVER implemented\n", "In country PSE measure Full lockdown was NEVER implemented\n", "In country PSE measure Visa restrictions was NEVER implemented\n", "In country PSE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PSE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PSE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PSE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PSE measure Testing policy was NEVER implemented\n", "In country PSE measure Psychological assistance and medical social work was NEVER implemented\n", "In country PSE measure Mass population testing was NEVER implemented\n", "In country PSE measure testing policy was NEVER implemented\n", "In country PSE measure limit public gatherings was NEVER implemented\n", "In country PSE measure strengthening the public health system was NEVER implemented\n", "In country PSE measure Humanitarian exemptions was NEVER implemented\n", "In country PSE measure Complete border closure was NEVER implemented\n", "In country PSE measure curfews was NEVER implemented\n", "In country PSE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PAN measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country PAN measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country PAN measure Awareness campaigns was NEVER implemented\n", "In country PAN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country PAN measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country PAN measure Border closure was implemented on 2020-03-13 00:00:00\n", "In country PAN measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country PAN measure Strengthening the public health system was NEVER implemented\n", "In country PAN measure Limit product imports/exports was NEVER implemented\n", "In country PAN measure Border checks was implemented on 2020-01-04 00:00:00\n", "In country PAN measure International flights suspension was implemented on 2020-03-22 00:00:00\n", "In country PAN measure Surveillance and monitoring was implemented on 2020-03-19 00:00:00\n", "In country PAN measure Other public health measures enforced was NEVER implemented\n", "In country PAN measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country PAN measure State of emergency declared was NEVER implemented\n", "In country PAN measure General recommendations was NEVER implemented\n", "In country PAN measure Partial lockdown was implemented on 2020-04-11 00:00:00\n", "In country PAN measure Checkpoints within the country was NEVER implemented\n", "In country PAN measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country PAN measure Curfews was implemented on 2020-03-18 00:00:00\n", "In country PAN measure Changes in prison-related policies was NEVER implemented\n", "In country PAN measure Public services closure was implemented on 2020-03-19 00:00:00\n", "In country PAN measure Military deployment was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country PAN measure Full lockdown was NEVER implemented\n", "In country PAN measure Visa restrictions was NEVER implemented\n", "In country PAN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PAN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PAN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PAN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PAN measure Testing policy was NEVER implemented\n", "In country PAN measure Psychological assistance and medical social work was NEVER implemented\n", "In country PAN measure Mass population testing was NEVER implemented\n", "In country PAN measure testing policy was NEVER implemented\n", "In country PAN measure limit public gatherings was NEVER implemented\n", "In country PAN measure strengthening the public health system was NEVER implemented\n", "In country PAN measure Humanitarian exemptions was NEVER implemented\n", "In country PAN measure Complete border closure was NEVER implemented\n", "In country PAN measure curfews was NEVER implemented\n", "In country PAN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PNG measure Health screenings in airports and border crossings was NEVER implemented\n", "In country PNG measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country PNG measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country PNG measure Emergency administrative structures activated or established was implemented on 2020-04-02 00:00:00\n", "In country PNG measure Limit public gatherings was implemented on 2020-03-18 00:00:00\n", "In country PNG measure Border closure was implemented on 2020-02-09 00:00:00\n", "In country PNG measure Schools closure was implemented on 2020-03-24 00:00:00\n", "In country PNG measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country PNG measure Limit product imports/exports was NEVER implemented\n", "In country PNG measure Border checks was NEVER implemented\n", "In country PNG measure International flights suspension was implemented on 2020-04-07 00:00:00\n", "In country PNG measure Surveillance and monitoring was implemented on 2020-03-26 00:00:00\n", "In country PNG measure Other public health measures enforced was implemented on 2020-04-08 00:00:00\n", "In country PNG measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country PNG measure State of emergency declared was implemented on 2020-03-24 00:00:00\n", "In country PNG measure General recommendations was NEVER implemented\n", "In country PNG measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country PNG measure Checkpoints within the country was NEVER implemented\n", "In country PNG measure Economic measures was implemented on 2020-03-18 00:00:00\n", "In country PNG measure Curfews was NEVER implemented\n", "In country PNG measure Changes in prison-related policies was NEVER implemented\n", "In country PNG measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country PNG measure Military deployment was implemented on 2020-04-09 00:00:00\n", "In country PNG measure Full lockdown was NEVER implemented\n", "In country PNG measure Visa restrictions was implemented on 2020-03-11 00:00:00\n", "In country PNG measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PNG measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PNG measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PNG measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PNG measure Testing policy was NEVER implemented\n", "In country PNG measure Psychological assistance and medical social work was NEVER implemented\n", "In country PNG measure Mass population testing was NEVER implemented\n", "In country PNG measure testing policy was NEVER implemented\n", "In country PNG measure limit public gatherings was NEVER implemented\n", "In country PNG measure strengthening the public health system was NEVER implemented\n", "In country PNG measure Humanitarian exemptions was NEVER implemented\n", "In country PNG measure Complete border closure was implemented on 2020-04-08 00:00:00\n", "In country PNG measure curfews was NEVER implemented\n", "In country PNG measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PRY measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country PRY measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country PRY measure Awareness campaigns was NEVER implemented\n", "In country PRY measure Emergency administrative structures activated or established was implemented on 2020-03-19 00:00:00\n", "In country PRY measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country PRY measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country PRY measure Schools closure was implemented on 2020-03-10 00:00:00\n", "In country PRY measure Strengthening the public health system was implemented on 2020-03-13 00:00:00\n", "In country PRY measure Limit product imports/exports was NEVER implemented\n", "In country PRY measure Border checks was NEVER implemented\n", "In country PRY measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country PRY measure Surveillance and monitoring was implemented on 2020-03-31 00:00:00\n", "In country PRY measure Other public health measures enforced was NEVER implemented\n", "In country PRY measure Domestic travel restrictions was implemented on 2020-04-05 00:00:00\n", "In country PRY measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country PRY measure General recommendations was NEVER implemented\n", "In country PRY measure Partial lockdown was implemented on 2020-03-20 00:00:00\n", "In country PRY measure Checkpoints within the country was NEVER implemented\n", "In country PRY measure Economic measures was implemented on 2020-03-12 00:00:00\n", "In country PRY measure Curfews was implemented on 2020-03-17 00:00:00\n", "In country PRY measure Changes in prison-related policies was NEVER implemented\n", "In country PRY measure Public services closure was implemented on 2020-03-13 00:00:00\n", "In country PRY measure Military deployment was NEVER implemented\n", "In country PRY measure Full lockdown was NEVER implemented\n", "In country PRY measure Visa restrictions was NEVER implemented\n", "In country PRY measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PRY measure Additional health/documents requirements upon arrival was implemented on 2020-02-07 00:00:00\n", "In country PRY measure Requirement to wear protective gear in public was implemented on 2020-04-07 00:00:00\n", "In country PRY measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PRY measure Testing policy was NEVER implemented\n", "In country PRY measure Psychological assistance and medical social work was NEVER implemented\n", "In country PRY measure Mass population testing was NEVER implemented\n", "In country PRY measure testing policy was NEVER implemented\n", "In country PRY measure limit public gatherings was NEVER implemented\n", "In country PRY measure strengthening the public health system was NEVER implemented\n", "In country PRY measure Humanitarian exemptions was NEVER implemented\n", "In country PRY measure Complete border closure was NEVER implemented\n", "In country PRY measure curfews was NEVER implemented\n", "In country PRY measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PER measure Health screenings in airports and border crossings was NEVER implemented\n", "In country PER measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country PER measure Awareness campaigns was NEVER implemented\n", "In country PER measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country PER measure Limit public gatherings was NEVER implemented\n", "In country PER measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country PER measure Schools closure was implemented on 2020-03-11 00:00:00\n", "In country PER measure Strengthening the public health system was NEVER implemented\n", "In country PER measure Limit product imports/exports was NEVER implemented\n", "In country PER measure Border checks was NEVER implemented\n", "In country PER measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country PER measure Surveillance and monitoring was NEVER implemented\n", "In country PER measure Other public health measures enforced was NEVER implemented\n", "In country PER measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country PER measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country PER measure General recommendations was NEVER implemented\n", "In country PER measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country PER measure Checkpoints within the country was NEVER implemented\n", "In country PER measure Economic measures was implemented on 2020-03-26 00:00:00\n", "In country PER measure Curfews was implemented on 2020-03-18 00:00:00\n", "In country PER measure Changes in prison-related policies was NEVER implemented\n", "In country PER measure Public services closure was NEVER implemented\n", "In country PER measure Military deployment was implemented on 2020-03-16 00:00:00\n", "In country PER measure Full lockdown was NEVER implemented\n", "In country PER measure Visa restrictions was NEVER implemented\n", "In country PER measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PER measure Additional health/documents requirements upon arrival was implemented on 2020-03-16 00:00:00\n", "In country PER measure Requirement to wear protective gear in public was implemented on 2020-03-31 00:00:00\n", "In country PER measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PER measure Testing policy was NEVER implemented\n", "In country PER measure Psychological assistance and medical social work was NEVER implemented\n", "In country PER measure Mass population testing was NEVER implemented\n", "In country PER measure testing policy was NEVER implemented\n", "In country PER measure limit public gatherings was NEVER implemented\n", "In country PER measure strengthening the public health system was NEVER implemented\n", "In country PER measure Humanitarian exemptions was NEVER implemented\n", "In country PER measure Complete border closure was NEVER implemented\n", "In country PER measure curfews was NEVER implemented\n", "In country PER measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PHL measure Health screenings in airports and border crossings was NEVER implemented\n", "In country PHL measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country PHL measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country PHL measure Emergency administrative structures activated or established was implemented on 2020-03-15 00:00:00\n", "In country PHL measure Limit public gatherings was implemented on 2020-03-10 00:00:00\n", "In country PHL measure Border closure was implemented on 2020-01-19 00:00:00\n", "In country PHL measure Schools closure was implemented on 2020-03-10 00:00:00\n", "In country PHL measure Strengthening the public health system was implemented on 2020-01-31 00:00:00\n", "In country PHL measure Limit product imports/exports was NEVER implemented\n", "In country PHL measure Border checks was implemented on 2020-03-12 00:00:00\n", "In country PHL measure International flights suspension was implemented on UNKNOWN DATE\n", "In country PHL measure Surveillance and monitoring was implemented on 2020-03-30 00:00:00\n", "In country PHL measure Other public health measures enforced was NEVER implemented\n", "In country PHL measure Domestic travel restrictions was implemented on 2020-03-15 00:00:00\n", "In country PHL measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country PHL measure General recommendations was implemented on 2020-04-02 00:00:00\n", "In country PHL measure Partial lockdown was implemented on 2020-03-26 00:00:00\n", "In country PHL measure Checkpoints within the country was NEVER implemented\n", "In country PHL measure Economic measures was implemented on 2020-03-11 00:00:00\n", "In country PHL measure Curfews was implemented on 2020-03-14 00:00:00\n", "In country PHL measure Changes in prison-related policies was implemented on 2020-03-11 00:00:00\n", "In country PHL measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country PHL measure Military deployment was implemented on 2020-03-22 00:00:00\n", "In country PHL measure Full lockdown was implemented on 2020-04-01 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country PHL measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country PHL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PHL measure Additional health/documents requirements upon arrival was implemented on 2020-03-17 00:00:00\n", "In country PHL measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PHL measure Amendments to funeral and burial regulations was implemented on 2020-03-24 00:00:00\n", "In country PHL measure Testing policy was implemented on 2020-01-30 00:00:00\n", "In country PHL measure Psychological assistance and medical social work was implemented on 2020-04-06 00:00:00\n", "In country PHL measure Mass population testing was implemented on 2020-03-31 00:00:00\n", "In country PHL measure testing policy was NEVER implemented\n", "In country PHL measure limit public gatherings was NEVER implemented\n", "In country PHL measure strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country PHL measure Humanitarian exemptions was NEVER implemented\n", "In country PHL measure Complete border closure was NEVER implemented\n", "In country PHL measure curfews was NEVER implemented\n", "In country PHL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country POL measure Health screenings in airports and border crossings was implemented on 2020-03-09 00:00:00\n", "In country POL measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country POL measure Awareness campaigns was implemented on 2020-04-08 00:00:00\n", "In country POL measure Emergency administrative structures activated or established was NEVER implemented\n", "In country POL measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country POL measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country POL measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country POL measure Strengthening the public health system was implemented on 2020-01-31 00:00:00\n", "In country POL measure Limit product imports/exports was NEVER implemented\n", "In country POL measure Border checks was implemented on 2020-03-15 00:00:00\n", "In country POL measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country POL measure Surveillance and monitoring was implemented on 2020-03-10 00:00:00\n", "In country POL measure Other public health measures enforced was NEVER implemented\n", "In country POL measure Domestic travel restrictions was NEVER implemented\n", "In country POL measure State of emergency declared was implemented on 2020-03-13 00:00:00\n", "In country POL measure General recommendations was implemented on 2020-02-25 00:00:00\n", "In country POL measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country POL measure Checkpoints within the country was NEVER implemented\n", "In country POL measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country POL measure Curfews was implemented on 2020-03-24 00:00:00\n", "In country POL measure Changes in prison-related policies was implemented on 2020-03-23 00:00:00\n", "In country POL measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country POL measure Military deployment was NEVER implemented\n", "In country POL measure Full lockdown was NEVER implemented\n", "In country POL measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country POL measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country POL measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country POL measure Requirement to wear protective gear in public was implemented on 2020-04-02 00:00:00\n", "In country POL measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country POL measure Testing policy was NEVER implemented\n", "In country POL measure Psychological assistance and medical social work was NEVER implemented\n", "In country POL measure Mass population testing was NEVER implemented\n", "In country POL measure testing policy was NEVER implemented\n", "In country POL measure limit public gatherings was NEVER implemented\n", "In country POL measure strengthening the public health system was NEVER implemented\n", "In country POL measure Humanitarian exemptions was NEVER implemented\n", "In country POL measure Complete border closure was NEVER implemented\n", "In country POL measure curfews was implemented on 2020-04-09 00:00:00\n", "In country POL measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country PRT measure Health screenings in airports and border crossings was implemented on 2020-03-20 00:00:00\n", "In country PRT measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country PRT measure Awareness campaigns was implemented on 2020-03-21 00:00:00\n", "In country PRT measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country PRT measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country PRT measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country PRT measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country PRT measure Strengthening the public health system was implemented on 2020-03-16 00:00:00\n", "In country PRT measure Limit product imports/exports was NEVER implemented\n", "In country PRT measure Border checks was NEVER implemented\n", "In country PRT measure International flights suspension was implemented on 2020-03-10 00:00:00\n", "In country PRT measure Surveillance and monitoring was implemented on 2020-03-20 00:00:00\n", "In country PRT measure Other public health measures enforced was NEVER implemented\n", "In country PRT measure Domestic travel restrictions was implemented on 2020-04-09 00:00:00\n", "In country PRT measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country PRT measure General recommendations was implemented on 2020-03-26 00:00:00\n", "In country PRT measure Partial lockdown was implemented on 2020-04-03 00:00:00\n", "In country PRT measure Checkpoints within the country was NEVER implemented\n", "In country PRT measure Economic measures was implemented on 2020-03-21 00:00:00\n", "In country PRT measure Curfews was NEVER implemented\n", "In country PRT measure Changes in prison-related policies was implemented on 2020-04-02 00:00:00\n", "In country PRT measure Public services closure was implemented on 2020-03-20 00:00:00\n", "In country PRT measure Military deployment was NEVER implemented\n", "In country PRT measure Full lockdown was NEVER implemented\n", "In country PRT measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country PRT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country PRT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country PRT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country PRT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country PRT measure Testing policy was implemented on 2020-03-26 00:00:00\n", "In country PRT measure Psychological assistance and medical social work was implemented on 2020-04-11 00:00:00\n", "In country PRT measure Mass population testing was NEVER implemented\n", "In country PRT measure testing policy was NEVER implemented\n", "In country PRT measure limit public gatherings was NEVER implemented\n", "In country PRT measure strengthening the public health system was NEVER implemented\n", "In country PRT measure Humanitarian exemptions was NEVER implemented\n", "In country PRT measure Complete border closure was NEVER implemented\n", "In country PRT measure curfews was NEVER implemented\n", "In country PRT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country QAT measure Health screenings in airports and border crossings was NEVER implemented\n", "In country QAT measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country QAT measure Awareness campaigns was implemented on 2020-03-06 00:00:00\n", "In country QAT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country QAT measure Limit public gatherings was implemented on 2020-03-27 00:00:00\n", "In country QAT measure Border closure was NEVER implemented\n", "In country QAT measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country QAT measure Strengthening the public health system was NEVER implemented\n", "In country QAT measure Limit product imports/exports was NEVER implemented\n", "In country QAT measure Border checks was NEVER implemented\n", "In country QAT measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country QAT measure Surveillance and monitoring was NEVER implemented\n", "In country QAT measure Other public health measures enforced was NEVER implemented\n", "In country QAT measure Domestic travel restrictions was implemented on 2020-03-27 00:00:00\n", "In country QAT measure State of emergency declared was NEVER implemented\n", "In country QAT measure General recommendations was NEVER implemented\n", "In country QAT measure Partial lockdown was implemented on 2020-03-22 00:00:00\n", "In country QAT measure Checkpoints within the country was NEVER implemented\n", "In country QAT measure Economic measures was NEVER implemented\n", "In country QAT measure Curfews was NEVER implemented\n", "In country QAT measure Changes in prison-related policies was NEVER implemented\n", "In country QAT measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country QAT measure Military deployment was NEVER implemented\n", "In country QAT measure Full lockdown was NEVER implemented\n", "In country QAT measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country QAT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country QAT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country QAT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country QAT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country QAT measure Testing policy was NEVER implemented\n", "In country QAT measure Psychological assistance and medical social work was NEVER implemented\n", "In country QAT measure Mass population testing was NEVER implemented\n", "In country QAT measure testing policy was NEVER implemented\n", "In country QAT measure limit public gatherings was NEVER implemented\n", "In country QAT measure strengthening the public health system was NEVER implemented\n", "In country QAT measure Humanitarian exemptions was NEVER implemented\n", "In country QAT measure Complete border closure was NEVER implemented\n", "In country QAT measure curfews was NEVER implemented\n", "In country QAT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ROU measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ROU measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country ROU measure Awareness campaigns was NEVER implemented\n", "In country ROU measure Emergency administrative structures activated or established was implemented on 2020-03-22 00:00:00\n", "In country ROU measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ROU measure Border closure was implemented on 2020-03-22 00:00:00\n", "In country ROU measure Schools closure was NEVER implemented\n", "In country ROU measure Strengthening the public health system was implemented on 2020-03-15 00:00:00\n", "In country ROU measure Limit product imports/exports was NEVER implemented\n", "In country ROU measure Border checks was NEVER implemented\n", "In country ROU measure International flights suspension was implemented on 2020-03-09 00:00:00\n", "In country ROU measure Surveillance and monitoring was NEVER implemented\n", "In country ROU measure Other public health measures enforced was implemented on 2020-04-12 00:00:00\n", "In country ROU measure Domestic travel restrictions was NEVER implemented\n", "In country ROU measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country ROU measure General recommendations was NEVER implemented\n", "In country ROU measure Partial lockdown was NEVER implemented\n", "In country ROU measure Checkpoints within the country was NEVER implemented\n", "In country ROU measure Economic measures was NEVER implemented\n", "In country ROU measure Curfews was implemented on 2020-03-22 00:00:00\n", "In country ROU measure Changes in prison-related policies was NEVER implemented\n", "In country ROU measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country ROU measure Military deployment was implemented on 2020-03-25 00:00:00\n", "In country ROU measure Full lockdown was implemented on 2020-03-30 00:00:00\n", "In country ROU measure Visa restrictions was implemented on 2020-03-09 00:00:00\n", "In country ROU measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ROU measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ROU measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ROU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ROU measure Testing policy was NEVER implemented\n", "In country ROU measure Psychological assistance and medical social work was NEVER implemented\n", "In country ROU measure Mass population testing was NEVER implemented\n", "In country ROU measure testing policy was NEVER implemented\n", "In country ROU measure limit public gatherings was NEVER implemented\n", "In country ROU measure strengthening the public health system was NEVER implemented\n", "In country ROU measure Humanitarian exemptions was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country ROU measure Complete border closure was NEVER implemented\n", "In country ROU measure curfews was NEVER implemented\n", "In country ROU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country RUS measure Health screenings in airports and border crossings was implemented on 2020-01-01 00:00:00\n", "In country RUS measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country RUS measure Awareness campaigns was NEVER implemented\n", "In country RUS measure Emergency administrative structures activated or established was implemented on 2020-04-01 00:00:00\n", "In country RUS measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country RUS measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country RUS measure Schools closure was NEVER implemented\n", "In country RUS measure Strengthening the public health system was implemented on 2020-03-21 00:00:00\n", "In country RUS measure Limit product imports/exports was NEVER implemented\n", "In country RUS measure Border checks was implemented on 2020-03-18 00:00:00\n", "In country RUS measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country RUS measure Surveillance and monitoring was NEVER implemented\n", "In country RUS measure Other public health measures enforced was NEVER implemented\n", "In country RUS measure Domestic travel restrictions was implemented on 2020-04-15 00:00:00\n", "In country RUS measure State of emergency declared was NEVER implemented\n", "In country RUS measure General recommendations was NEVER implemented\n", "In country RUS measure Partial lockdown was implemented on 2020-03-28 00:00:00\n", "In country RUS measure Checkpoints within the country was NEVER implemented\n", "In country RUS measure Economic measures was implemented on 2020-03-28 00:00:00\n", "In country RUS measure Curfews was NEVER implemented\n", "In country RUS measure Changes in prison-related policies was NEVER implemented\n", "In country RUS measure Public services closure was implemented on 2020-03-28 00:00:00\n", "In country RUS measure Military deployment was implemented on 2020-04-03 00:00:00\n", "In country RUS measure Full lockdown was NEVER implemented\n", "In country RUS measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country RUS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country RUS measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country RUS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country RUS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country RUS measure Testing policy was NEVER implemented\n", "In country RUS measure Psychological assistance and medical social work was NEVER implemented\n", "In country RUS measure Mass population testing was NEVER implemented\n", "In country RUS measure testing policy was NEVER implemented\n", "In country RUS measure limit public gatherings was NEVER implemented\n", "In country RUS measure strengthening the public health system was NEVER implemented\n", "In country RUS measure Humanitarian exemptions was NEVER implemented\n", "In country RUS measure Complete border closure was NEVER implemented\n", "In country RUS measure curfews was NEVER implemented\n", "In country RUS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country RWA measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country RWA measure Introduction of isolation and quarantine policies was implemented on 2020-02-27 00:00:00\n", "In country RWA measure Awareness campaigns was implemented on 2020-02-27 00:00:00\n", "In country RWA measure Emergency administrative structures activated or established was NEVER implemented\n", "In country RWA measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country RWA measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country RWA measure Schools closure was implemented on 2020-03-14 00:00:00\n", "In country RWA measure Strengthening the public health system was implemented on 2020-02-27 00:00:00\n", "In country RWA measure Limit product imports/exports was NEVER implemented\n", "In country RWA measure Border checks was NEVER implemented\n", "In country RWA measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country RWA measure Surveillance and monitoring was implemented on 2020-03-08 00:00:00\n", "In country RWA measure Other public health measures enforced was NEVER implemented\n", "In country RWA measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country RWA measure State of emergency declared was NEVER implemented\n", "In country RWA measure General recommendations was implemented on 2020-03-15 00:00:00\n", "In country RWA measure Partial lockdown was implemented on 2020-03-21 00:00:00\n", "In country RWA measure Checkpoints within the country was NEVER implemented\n", "In country RWA measure Economic measures was NEVER implemented\n", "In country RWA measure Curfews was NEVER implemented\n", "In country RWA measure Changes in prison-related policies was NEVER implemented\n", "In country RWA measure Public services closure was NEVER implemented\n", "In country RWA measure Military deployment was NEVER implemented\n", "In country RWA measure Full lockdown was NEVER implemented\n", "In country RWA measure Visa restrictions was NEVER implemented\n", "In country RWA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country RWA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country RWA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country RWA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country RWA measure Testing policy was NEVER implemented\n", "In country RWA measure Psychological assistance and medical social work was NEVER implemented\n", "In country RWA measure Mass population testing was NEVER implemented\n", "In country RWA measure testing policy was NEVER implemented\n", "In country RWA measure limit public gatherings was NEVER implemented\n", "In country RWA measure strengthening the public health system was NEVER implemented\n", "In country RWA measure Humanitarian exemptions was NEVER implemented\n", "In country RWA measure Complete border closure was NEVER implemented\n", "In country RWA measure curfews was NEVER implemented\n", "In country RWA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country KNA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country KNA measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country KNA measure Awareness campaigns was NEVER implemented\n", "In country KNA measure Emergency administrative structures activated or established was implemented on 2020-03-09 00:00:00\n", "In country KNA measure Limit public gatherings was NEVER implemented\n", "In country KNA measure Border closure was implemented on 2020-03-25 00:00:00\n", "In country KNA measure Schools closure was NEVER implemented\n", "In country KNA measure Strengthening the public health system was NEVER implemented\n", "In country KNA measure Limit product imports/exports was NEVER implemented\n", "In country KNA measure Border checks was NEVER implemented\n", "In country KNA measure International flights suspension was NEVER implemented\n", "In country KNA measure Surveillance and monitoring was NEVER implemented\n", "In country KNA measure Other public health measures enforced was NEVER implemented\n", "In country KNA measure Domestic travel restrictions was NEVER implemented\n", "In country KNA measure State of emergency declared was NEVER implemented\n", "In country KNA measure General recommendations was NEVER implemented\n", "In country KNA measure Partial lockdown was NEVER implemented\n", "In country KNA measure Checkpoints within the country was NEVER implemented\n", "In country KNA measure Economic measures was implemented on 2020-03-25 00:00:00\n", "In country KNA measure Curfews was NEVER implemented\n", "In country KNA measure Changes in prison-related policies was NEVER implemented\n", "In country KNA measure Public services closure was NEVER implemented\n", "In country KNA measure Military deployment was NEVER implemented\n", "In country KNA measure Full lockdown was NEVER implemented\n", "In country KNA measure Visa restrictions was NEVER implemented\n", "In country KNA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country KNA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country KNA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country KNA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country KNA measure Testing policy was NEVER implemented\n", "In country KNA measure Psychological assistance and medical social work was NEVER implemented\n", "In country KNA measure Mass population testing was NEVER implemented\n", "In country KNA measure testing policy was NEVER implemented\n", "In country KNA measure limit public gatherings was NEVER implemented\n", "In country KNA measure strengthening the public health system was NEVER implemented\n", "In country KNA measure Humanitarian exemptions was NEVER implemented\n", "In country KNA measure Complete border closure was NEVER implemented\n", "In country KNA measure curfews was NEVER implemented\n", "In country KNA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LCA measure Health screenings in airports and border crossings was NEVER implemented\n", "In country LCA measure Introduction of isolation and quarantine policies was implemented on 2020-02-22 00:00:00\n", "In country LCA measure Awareness campaigns was implemented on 2020-03-13 00:00:00\n", "In country LCA measure Emergency administrative structures activated or established was implemented on 2020-03-23 00:00:00\n", "In country LCA measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country LCA measure Border closure was implemented on 2020-03-23 00:00:00\n", "In country LCA measure Schools closure was NEVER implemented\n", "In country LCA measure Strengthening the public health system was implemented on 2020-01-23 00:00:00\n", "In country LCA measure Limit product imports/exports was NEVER implemented\n", "In country LCA measure Border checks was NEVER implemented\n", "In country LCA measure International flights suspension was NEVER implemented\n", "In country LCA measure Surveillance and monitoring was implemented on 2020-03-18 00:00:00\n", "In country LCA measure Other public health measures enforced was NEVER implemented\n", "In country LCA measure Domestic travel restrictions was NEVER implemented\n", "In country LCA measure State of emergency declared was NEVER implemented\n", "In country LCA measure General recommendations was implemented on 2020-02-28 00:00:00\n", "In country LCA measure Partial lockdown was implemented on 2020-03-23 00:00:00\n", "In country LCA measure Checkpoints within the country was NEVER implemented\n", "In country LCA measure Economic measures was NEVER implemented\n", "In country LCA measure Curfews was implemented on 2020-03-30 00:00:00\n", "In country LCA measure Changes in prison-related policies was NEVER implemented\n", "In country LCA measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country LCA measure Military deployment was NEVER implemented\n", "In country LCA measure Full lockdown was NEVER implemented\n", "In country LCA measure Visa restrictions was implemented on 2020-02-04 00:00:00\n", "In country LCA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LCA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country LCA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country LCA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country LCA measure Testing policy was NEVER implemented\n", "In country LCA measure Psychological assistance and medical social work was NEVER implemented\n", "In country LCA measure Mass population testing was NEVER implemented\n", "In country LCA measure testing policy was NEVER implemented\n", "In country LCA measure limit public gatherings was NEVER implemented\n", "In country LCA measure strengthening the public health system was NEVER implemented\n", "In country LCA measure Humanitarian exemptions was NEVER implemented\n", "In country LCA measure Complete border closure was NEVER implemented\n", "In country LCA measure curfews was NEVER implemented\n", "In country LCA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country VCT measure Health screenings in airports and border crossings was NEVER implemented\n", "In country VCT measure Introduction of isolation and quarantine policies was implemented on 2020-02-28 00:00:00\n", "In country VCT measure Awareness campaigns was implemented on 2020-02-26 00:00:00\n", "In country VCT measure Emergency administrative structures activated or established was NEVER implemented\n", "In country VCT measure Limit public gatherings was NEVER implemented\n", "In country VCT measure Border closure was NEVER implemented\n", "In country VCT measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country VCT measure Strengthening the public health system was implemented on 2020-04-01 00:00:00\n", "In country VCT measure Limit product imports/exports was NEVER implemented\n", "In country VCT measure Border checks was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country VCT measure International flights suspension was NEVER implemented\n", "In country VCT measure Surveillance and monitoring was NEVER implemented\n", "In country VCT measure Other public health measures enforced was NEVER implemented\n", "In country VCT measure Domestic travel restrictions was NEVER implemented\n", "In country VCT measure State of emergency declared was NEVER implemented\n", "In country VCT measure General recommendations was NEVER implemented\n", "In country VCT measure Partial lockdown was NEVER implemented\n", "In country VCT measure Checkpoints within the country was NEVER implemented\n", "In country VCT measure Economic measures was NEVER implemented\n", "In country VCT measure Curfews was NEVER implemented\n", "In country VCT measure Changes in prison-related policies was NEVER implemented\n", "In country VCT measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country VCT measure Military deployment was NEVER implemented\n", "In country VCT measure Full lockdown was NEVER implemented\n", "In country VCT measure Visa restrictions was NEVER implemented\n", "In country VCT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country VCT measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country VCT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country VCT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country VCT measure Testing policy was NEVER implemented\n", "In country VCT measure Psychological assistance and medical social work was NEVER implemented\n", "In country VCT measure Mass population testing was NEVER implemented\n", "In country VCT measure testing policy was NEVER implemented\n", "In country VCT measure limit public gatherings was NEVER implemented\n", "In country VCT measure strengthening the public health system was NEVER implemented\n", "In country VCT measure Humanitarian exemptions was NEVER implemented\n", "In country VCT measure Complete border closure was NEVER implemented\n", "In country VCT measure curfews was NEVER implemented\n", "In country VCT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country WSM measure Health screenings in airports and border crossings was implemented on 2020-03-06 00:00:00\n", "In country WSM measure Introduction of isolation and quarantine policies was implemented on 2020-04-04 00:00:00\n", "In country WSM measure Awareness campaigns was implemented on 2020-04-08 00:00:00\n", "In country WSM measure Emergency administrative structures activated or established was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Strengthening the public health system was implemented on 2020-03-30 00:00:00\n", "In country WSM measure Limit product imports/exports was NEVER implemented\n", "In country WSM measure Border checks was NEVER implemented\n", "In country WSM measure International flights suspension was implemented on 2020-03-21 00:00:00\n", "In country WSM measure Surveillance and monitoring was NEVER implemented\n", "In country WSM measure Other public health measures enforced was NEVER implemented\n", "In country WSM measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country WSM measure State of emergency declared was implemented on 2020-04-05 00:00:00\n", "In country WSM measure General recommendations was implemented on 2020-03-14 00:00:00\n", "In country WSM measure Partial lockdown was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Checkpoints within the country was NEVER implemented\n", "In country WSM measure Economic measures was implemented on 2020-03-23 00:00:00\n", "In country WSM measure Curfews was NEVER implemented\n", "In country WSM measure Changes in prison-related policies was NEVER implemented\n", "In country WSM measure Public services closure was implemented on 2020-03-20 00:00:00\n", "In country WSM measure Military deployment was NEVER implemented\n", "In country WSM measure Full lockdown was NEVER implemented\n", "In country WSM measure Visa restrictions was NEVER implemented\n", "In country WSM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country WSM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country WSM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country WSM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country WSM measure Testing policy was NEVER implemented\n", "In country WSM measure Psychological assistance and medical social work was NEVER implemented\n", "In country WSM measure Mass population testing was NEVER implemented\n", "In country WSM measure testing policy was NEVER implemented\n", "In country WSM measure limit public gatherings was NEVER implemented\n", "In country WSM measure strengthening the public health system was NEVER implemented\n", "In country WSM measure Humanitarian exemptions was NEVER implemented\n", "In country WSM measure Complete border closure was NEVER implemented\n", "In country WSM measure curfews was NEVER implemented\n", "In country WSM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SMR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SMR measure Introduction of isolation and quarantine policies was implemented on 2020-03-20 00:00:00\n", "In country SMR measure Awareness campaigns was NEVER implemented\n", "In country SMR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SMR measure Limit public gatherings was implemented on 2020-03-08 00:00:00\n", "In country SMR measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country SMR measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country SMR measure Strengthening the public health system was implemented on 2020-03-08 00:00:00\n", "In country SMR measure Limit product imports/exports was NEVER implemented\n", "In country SMR measure Border checks was implemented on 2020-03-08 00:00:00\n", "In country SMR measure International flights suspension was NEVER implemented\n", "In country SMR measure Surveillance and monitoring was NEVER implemented\n", "In country SMR measure Other public health measures enforced was implemented on 2020-03-20 00:00:00\n", "In country SMR measure Domestic travel restrictions was NEVER implemented\n", "In country SMR measure State of emergency declared was NEVER implemented\n", "In country SMR measure General recommendations was NEVER implemented\n", "In country SMR measure Partial lockdown was NEVER implemented\n", "In country SMR measure Checkpoints within the country was NEVER implemented\n", "In country SMR measure Economic measures was NEVER implemented\n", "In country SMR measure Curfews was NEVER implemented\n", "In country SMR measure Changes in prison-related policies was NEVER implemented\n", "In country SMR measure Public services closure was implemented on 2020-03-14 00:00:00\n", "In country SMR measure Military deployment was NEVER implemented\n", "In country SMR measure Full lockdown was NEVER implemented\n", "In country SMR measure Visa restrictions was NEVER implemented\n", "In country SMR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SMR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SMR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SMR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SMR measure Testing policy was NEVER implemented\n", "In country SMR measure Psychological assistance and medical social work was NEVER implemented\n", "In country SMR measure Mass population testing was NEVER implemented\n", "In country SMR measure testing policy was NEVER implemented\n", "In country SMR measure limit public gatherings was NEVER implemented\n", "In country SMR measure strengthening the public health system was NEVER implemented\n", "In country SMR measure Humanitarian exemptions was NEVER implemented\n", "In country SMR measure Complete border closure was NEVER implemented\n", "In country SMR measure curfews was NEVER implemented\n", "In country SMR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country STP measure Health screenings in airports and border crossings was NEVER implemented\n", "In country STP measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country STP measure Awareness campaigns was NEVER implemented\n", "In country STP measure Emergency administrative structures activated or established was implemented on 2020-04-02 00:00:00\n", "In country STP measure Limit public gatherings was NEVER implemented\n", "In country STP measure Border closure was NEVER implemented\n", "In country STP measure Schools closure was NEVER implemented\n", "In country STP measure Strengthening the public health system was NEVER implemented\n", "In country STP measure Limit product imports/exports was NEVER implemented\n", "In country STP measure Border checks was NEVER implemented\n", "In country STP measure International flights suspension was NEVER implemented\n", "In country STP measure Surveillance and monitoring was NEVER implemented\n", "In country STP measure Other public health measures enforced was NEVER implemented\n", "In country STP measure Domestic travel restrictions was NEVER implemented\n", "In country STP measure State of emergency declared was NEVER implemented\n", "In country STP measure General recommendations was NEVER implemented\n", "In country STP measure Partial lockdown was NEVER implemented\n", "In country STP measure Checkpoints within the country was NEVER implemented\n", "In country STP measure Economic measures was NEVER implemented\n", "In country STP measure Curfews was NEVER implemented\n", "In country STP measure Changes in prison-related policies was NEVER implemented\n", "In country STP measure Public services closure was NEVER implemented\n", "In country STP measure Military deployment was NEVER implemented\n", "In country STP measure Full lockdown was NEVER implemented\n", "In country STP measure Visa restrictions was NEVER implemented\n", "In country STP measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country STP measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country STP measure Requirement to wear protective gear in public was NEVER implemented\n", "In country STP measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country STP measure Testing policy was NEVER implemented\n", "In country STP measure Psychological assistance and medical social work was NEVER implemented\n", "In country STP measure Mass population testing was NEVER implemented\n", "In country STP measure testing policy was NEVER implemented\n", "In country STP measure limit public gatherings was NEVER implemented\n", "In country STP measure strengthening the public health system was NEVER implemented\n", "In country STP measure Humanitarian exemptions was NEVER implemented\n", "In country STP measure Complete border closure was NEVER implemented\n", "In country STP measure curfews was NEVER implemented\n", "In country STP measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SAU measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SAU measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SAU measure Awareness campaigns was implemented on 2020-03-14 00:00:00\n", "In country SAU measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SAU measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country SAU measure Border closure was implemented on 2020-03-07 00:00:00\n", "In country SAU measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country SAU measure Strengthening the public health system was NEVER implemented\n", "In country SAU measure Limit product imports/exports was NEVER implemented\n", "In country SAU measure Border checks was NEVER implemented\n", "In country SAU measure International flights suspension was implemented on 2020-03-15 00:00:00\n", "In country SAU measure Surveillance and monitoring was NEVER implemented\n", "In country SAU measure Other public health measures enforced was NEVER implemented\n", "In country SAU measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country SAU measure State of emergency declared was NEVER implemented\n", "In country SAU measure General recommendations was NEVER implemented\n", "In country SAU measure Partial lockdown was implemented on 2020-03-25 00:00:00\n", "In country SAU measure Checkpoints within the country was NEVER implemented\n", "In country SAU measure Economic measures was NEVER implemented\n", "In country SAU measure Curfews was implemented on 2020-03-23 00:00:00\n", "In country SAU measure Changes in prison-related policies was NEVER implemented\n", "In country SAU measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country SAU measure Military deployment was NEVER implemented\n", "In country SAU measure Full lockdown was implemented on 2020-04-10 00:00:00\n", "In country SAU measure Visa restrictions was implemented on 2020-03-12 00:00:00\n", "In country SAU measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SAU measure Additional health/documents requirements upon arrival was implemented on 2020-03-12 00:00:00\n", "In country SAU measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SAU measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SAU measure Testing policy was NEVER implemented\n", "In country SAU measure Psychological assistance and medical social work was NEVER implemented\n", "In country SAU measure Mass population testing was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country SAU measure testing policy was NEVER implemented\n", "In country SAU measure limit public gatherings was NEVER implemented\n", "In country SAU measure strengthening the public health system was NEVER implemented\n", "In country SAU measure Humanitarian exemptions was NEVER implemented\n", "In country SAU measure Complete border closure was NEVER implemented\n", "In country SAU measure curfews was NEVER implemented\n", "In country SAU measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SEN measure Health screenings in airports and border crossings was implemented on 2020-03-15 00:00:00\n", "In country SEN measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SEN measure Awareness campaigns was implemented on 2020-03-14 00:00:00\n", "In country SEN measure Emergency administrative structures activated or established was implemented on 2020-03-25 00:00:00\n", "In country SEN measure Limit public gatherings was implemented on 2020-03-14 00:00:00\n", "In country SEN measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country SEN measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country SEN measure Strengthening the public health system was implemented on 2020-03-15 00:00:00\n", "In country SEN measure Limit product imports/exports was NEVER implemented\n", "In country SEN measure Border checks was NEVER implemented\n", "In country SEN measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country SEN measure Surveillance and monitoring was implemented on 2020-04-09 00:00:00\n", "In country SEN measure Other public health measures enforced was implemented on 2020-03-27 00:00:00\n", "In country SEN measure Domestic travel restrictions was implemented on 2020-03-27 00:00:00\n", "In country SEN measure State of emergency declared was implemented on 2020-03-24 00:00:00\n", "In country SEN measure General recommendations was NEVER implemented\n", "In country SEN measure Partial lockdown was NEVER implemented\n", "In country SEN measure Checkpoints within the country was implemented on 2020-03-27 00:00:00\n", "In country SEN measure Economic measures was implemented on 2020-04-03 00:00:00\n", "In country SEN measure Curfews was NEVER implemented\n", "In country SEN measure Changes in prison-related policies was NEVER implemented\n", "In country SEN measure Public services closure was NEVER implemented\n", "In country SEN measure Military deployment was NEVER implemented\n", "In country SEN measure Full lockdown was NEVER implemented\n", "In country SEN measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country SEN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SEN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SEN measure Requirement to wear protective gear in public was implemented on 2020-03-27 00:00:00\n", "In country SEN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SEN measure Testing policy was NEVER implemented\n", "In country SEN measure Psychological assistance and medical social work was NEVER implemented\n", "In country SEN measure Mass population testing was NEVER implemented\n", "In country SEN measure testing policy was NEVER implemented\n", "In country SEN measure limit public gatherings was NEVER implemented\n", "In country SEN measure strengthening the public health system was NEVER implemented\n", "In country SEN measure Humanitarian exemptions was NEVER implemented\n", "In country SEN measure Complete border closure was NEVER implemented\n", "In country SEN measure curfews was NEVER implemented\n", "In country SEN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SRB measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SRB measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country SRB measure Awareness campaigns was implemented on 2020-04-03 00:00:00\n", "In country SRB measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SRB measure Limit public gatherings was NEVER implemented\n", "In country SRB measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country SRB measure Schools closure was implemented on 2020-03-17 00:00:00\n", "In country SRB measure Strengthening the public health system was implemented on 2020-04-03 00:00:00\n", "In country SRB measure Limit product imports/exports was NEVER implemented\n", "In country SRB measure Border checks was implemented on 2020-03-15 00:00:00\n", "In country SRB measure International flights suspension was implemented on UNKNOWN DATE\n", "In country SRB measure Surveillance and monitoring was NEVER implemented\n", "In country SRB measure Other public health measures enforced was NEVER implemented\n", "In country SRB measure Domestic travel restrictions was NEVER implemented\n", "In country SRB measure State of emergency declared was implemented on 2020-03-15 00:00:00\n", "In country SRB measure General recommendations was implemented on 2020-02-26 00:00:00\n", "In country SRB measure Partial lockdown was NEVER implemented\n", "In country SRB measure Checkpoints within the country was NEVER implemented\n", "In country SRB measure Economic measures was NEVER implemented\n", "In country SRB measure Curfews was implemented on 2020-04-03 00:00:00\n", "In country SRB measure Changes in prison-related policies was NEVER implemented\n", "In country SRB measure Public services closure was implemented on 2020-04-03 00:00:00\n", "In country SRB measure Military deployment was NEVER implemented\n", "In country SRB measure Full lockdown was NEVER implemented\n", "In country SRB measure Visa restrictions was NEVER implemented\n", "In country SRB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SRB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SRB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SRB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SRB measure Testing policy was NEVER implemented\n", "In country SRB measure Psychological assistance and medical social work was NEVER implemented\n", "In country SRB measure Mass population testing was NEVER implemented\n", "In country SRB measure testing policy was NEVER implemented\n", "In country SRB measure limit public gatherings was NEVER implemented\n", "In country SRB measure strengthening the public health system was NEVER implemented\n", "In country SRB measure Humanitarian exemptions was NEVER implemented\n", "In country SRB measure Complete border closure was NEVER implemented\n", "In country SRB measure curfews was NEVER implemented\n", "In country SRB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SYC measure Health screenings in airports and border crossings was implemented on 2020-02-07 00:00:00\n", "In country SYC measure Introduction of isolation and quarantine policies was implemented on 2020-02-03 00:00:00\n", "In country SYC measure Awareness campaigns was implemented on 2020-02-07 00:00:00\n", "In country SYC measure Emergency administrative structures activated or established was implemented on 2020-02-07 00:00:00\n", "In country SYC measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country SYC measure Border closure was NEVER implemented\n", "In country SYC measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country SYC measure Strengthening the public health system was NEVER implemented\n", "In country SYC measure Limit product imports/exports was NEVER implemented\n", "In country SYC measure Border checks was implemented on 2020-04-08 00:00:00\n", "In country SYC measure International flights suspension was implemented on 2020-01-29 00:00:00\n", "In country SYC measure Surveillance and monitoring was NEVER implemented\n", "In country SYC measure Other public health measures enforced was NEVER implemented\n", "In country SYC measure Domestic travel restrictions was implemented on 2020-03-23 00:00:00\n", "In country SYC measure State of emergency declared was NEVER implemented\n", "In country SYC measure General recommendations was implemented on 2020-01-29 00:00:00\n", "In country SYC measure Partial lockdown was implemented on 2020-04-08 00:00:00\n", "In country SYC measure Checkpoints within the country was NEVER implemented\n", "In country SYC measure Economic measures was NEVER implemented\n", "In country SYC measure Curfews was NEVER implemented\n", "In country SYC measure Changes in prison-related policies was NEVER implemented\n", "In country SYC measure Public services closure was implemented on 2020-04-08 00:00:00\n", "In country SYC measure Military deployment was NEVER implemented\n", "In country SYC measure Full lockdown was NEVER implemented\n", "In country SYC measure Visa restrictions was implemented on 2020-02-07 00:00:00\n", "In country SYC measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SYC measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SYC measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SYC measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SYC measure Testing policy was NEVER implemented\n", "In country SYC measure Psychological assistance and medical social work was NEVER implemented\n", "In country SYC measure Mass population testing was NEVER implemented\n", "In country SYC measure testing policy was NEVER implemented\n", "In country SYC measure limit public gatherings was NEVER implemented\n", "In country SYC measure strengthening the public health system was NEVER implemented\n", "In country SYC measure Humanitarian exemptions was NEVER implemented\n", "In country SYC measure Complete border closure was NEVER implemented\n", "In country SYC measure curfews was NEVER implemented\n", "In country SYC measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SLE measure Health screenings in airports and border crossings was implemented on 2020-02-19 00:00:00\n", "In country SLE measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Awareness campaigns was NEVER implemented\n", "In country SLE measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Border closure was implemented on 2020-03-28 00:00:00\n", "In country SLE measure Schools closure was NEVER implemented\n", "In country SLE measure Strengthening the public health system was NEVER implemented\n", "In country SLE measure Limit product imports/exports was NEVER implemented\n", "In country SLE measure Border checks was NEVER implemented\n", "In country SLE measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Surveillance and monitoring was NEVER implemented\n", "In country SLE measure Other public health measures enforced was NEVER implemented\n", "In country SLE measure Domestic travel restrictions was implemented on 2020-04-12 00:00:00\n", "In country SLE measure State of emergency declared was implemented on 2020-03-25 00:00:00\n", "In country SLE measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Partial lockdown was implemented on 2020-04-05 00:00:00\n", "In country SLE measure Checkpoints within the country was NEVER implemented\n", "In country SLE measure Economic measures was NEVER implemented\n", "In country SLE measure Curfews was implemented on 2020-04-12 00:00:00\n", "In country SLE measure Changes in prison-related policies was NEVER implemented\n", "In country SLE measure Public services closure was implemented on 2020-04-12 00:00:00\n", "In country SLE measure Military deployment was implemented on 2020-03-16 00:00:00\n", "In country SLE measure Full lockdown was NEVER implemented\n", "In country SLE measure Visa restrictions was NEVER implemented\n", "In country SLE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SLE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SLE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SLE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SLE measure Testing policy was NEVER implemented\n", "In country SLE measure Psychological assistance and medical social work was NEVER implemented\n", "In country SLE measure Mass population testing was NEVER implemented\n", "In country SLE measure testing policy was NEVER implemented\n", "In country SLE measure limit public gatherings was NEVER implemented\n", "In country SLE measure strengthening the public health system was NEVER implemented\n", "In country SLE measure Humanitarian exemptions was NEVER implemented\n", "In country SLE measure Complete border closure was NEVER implemented\n", "In country SLE measure curfews was NEVER implemented\n", "In country SLE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country SGP measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SGP measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SGP measure Awareness campaigns was NEVER implemented\n", "In country SGP measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SGP measure Limit public gatherings was implemented on UNKNOWN DATE\n", "In country SGP measure Border closure was NEVER implemented\n", "In country SGP measure Schools closure was NEVER implemented\n", "In country SGP measure Strengthening the public health system was NEVER implemented\n", "In country SGP measure Limit product imports/exports was NEVER implemented\n", "In country SGP measure Border checks was NEVER implemented\n", "In country SGP measure International flights suspension was NEVER implemented\n", "In country SGP measure Surveillance and monitoring was NEVER implemented\n", "In country SGP measure Other public health measures enforced was NEVER implemented\n", "In country SGP measure Domestic travel restrictions was NEVER implemented\n", "In country SGP measure State of emergency declared was NEVER implemented\n", "In country SGP measure General recommendations was implemented on UNKNOWN DATE\n", "In country SGP measure Partial lockdown was NEVER implemented\n", "In country SGP measure Checkpoints within the country was NEVER implemented\n", "In country SGP measure Economic measures was NEVER implemented\n", "In country SGP measure Curfews was NEVER implemented\n", "In country SGP measure Changes in prison-related policies was NEVER implemented\n", "In country SGP measure Public services closure was NEVER implemented\n", "In country SGP measure Military deployment was NEVER implemented\n", "In country SGP measure Full lockdown was NEVER implemented\n", "In country SGP measure Visa restrictions was NEVER implemented\n", "In country SGP measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SGP measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SGP measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SGP measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SGP measure Testing policy was NEVER implemented\n", "In country SGP measure Psychological assistance and medical social work was NEVER implemented\n", "In country SGP measure Mass population testing was NEVER implemented\n", "In country SGP measure testing policy was NEVER implemented\n", "In country SGP measure limit public gatherings was NEVER implemented\n", "In country SGP measure strengthening the public health system was NEVER implemented\n", "In country SGP measure Humanitarian exemptions was NEVER implemented\n", "In country SGP measure Complete border closure was NEVER implemented\n", "In country SGP measure curfews was NEVER implemented\n", "In country SGP measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SVK measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SVK measure Introduction of isolation and quarantine policies was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Awareness campaigns was NEVER implemented\n", "In country SVK measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SVK measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Border closure was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Schools closure was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Strengthening the public health system was implemented on 2020-03-24 00:00:00\n", "In country SVK measure Limit product imports/exports was implemented on 2020-03-25 00:00:00\n", "In country SVK measure Border checks was NEVER implemented\n", "In country SVK measure International flights suspension was implemented on UNKNOWN DATE\n", "In country SVK measure Surveillance and monitoring was NEVER implemented\n", "In country SVK measure Other public health measures enforced was NEVER implemented\n", "In country SVK measure Domestic travel restrictions was implemented on UNKNOWN DATE\n", "In country SVK measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country SVK measure General recommendations was implemented on UNKNOWN DATE\n", "In country SVK measure Partial lockdown was NEVER implemented\n", "In country SVK measure Checkpoints within the country was NEVER implemented\n", "In country SVK measure Economic measures was implemented on 2020-03-30 00:00:00\n", "In country SVK measure Curfews was NEVER implemented\n", "In country SVK measure Changes in prison-related policies was NEVER implemented\n", "In country SVK measure Public services closure was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Military deployment was implemented on 2020-03-24 00:00:00\n", "In country SVK measure Full lockdown was NEVER implemented\n", "In country SVK measure Visa restrictions was NEVER implemented\n", "In country SVK measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SVK measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SVK measure Requirement to wear protective gear in public was implemented on 2020-03-12 00:00:00\n", "In country SVK measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SVK measure Testing policy was implemented on 2020-04-03 00:00:00\n", "In country SVK measure Psychological assistance and medical social work was NEVER implemented\n", "In country SVK measure Mass population testing was NEVER implemented\n", "In country SVK measure testing policy was NEVER implemented\n", "In country SVK measure limit public gatherings was NEVER implemented\n", "In country SVK measure strengthening the public health system was NEVER implemented\n", "In country SVK measure Humanitarian exemptions was NEVER implemented\n", "In country SVK measure Complete border closure was NEVER implemented\n", "In country SVK measure curfews was NEVER implemented\n", "In country SVK measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SVN measure Health screenings in airports and border crossings was implemented on 2020-03-10 00:00:00\n", "In country SVN measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SVN measure Awareness campaigns was implemented on 2020-03-09 00:00:00\n", "In country SVN measure Emergency administrative structures activated or established was implemented on 2020-03-16 00:00:00\n", "In country SVN measure Limit public gatherings was implemented on 2020-03-19 00:00:00\n", "In country SVN measure Border closure was implemented on 2020-03-31 00:00:00\n", "In country SVN measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country SVN measure Strengthening the public health system was implemented on 2020-03-23 00:00:00\n", "In country SVN measure Limit product imports/exports was NEVER implemented\n", "In country SVN measure Border checks was implemented on 2020-03-19 00:00:00\n", "In country SVN measure International flights suspension was implemented on 2020-03-28 00:00:00\n", "In country SVN measure Surveillance and monitoring was implemented on 2020-03-10 00:00:00\n", "In country SVN measure Other public health measures enforced was NEVER implemented\n", "In country SVN measure Domestic travel restrictions was implemented on 2020-03-16 00:00:00\n", "In country SVN measure State of emergency declared was implemented on 2020-03-12 00:00:00\n", "In country SVN measure General recommendations was implemented on 2020-03-10 00:00:00\n", "In country SVN measure Partial lockdown was implemented on 2020-03-19 00:00:00\n", "In country SVN measure Checkpoints within the country was NEVER implemented\n", "In country SVN measure Economic measures was implemented on 2020-03-19 00:00:00\n", "In country SVN measure Curfews was NEVER implemented\n", "In country SVN measure Changes in prison-related policies was NEVER implemented\n", "In country SVN measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country SVN measure Military deployment was NEVER implemented\n", "In country SVN measure Full lockdown was NEVER implemented\n", "In country SVN measure Visa restrictions was NEVER implemented\n", "In country SVN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SVN measure Additional health/documents requirements upon arrival was implemented on UNKNOWN DATE\n", "In country SVN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SVN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SVN measure Testing policy was implemented on 2020-03-14 00:00:00\n", "In country SVN measure Psychological assistance and medical social work was NEVER implemented\n", "In country SVN measure Mass population testing was NEVER implemented\n", "In country SVN measure testing policy was NEVER implemented\n", "In country SVN measure limit public gatherings was NEVER implemented\n", "In country SVN measure strengthening the public health system was NEVER implemented\n", "In country SVN measure Humanitarian exemptions was NEVER implemented\n", "In country SVN measure Complete border closure was NEVER implemented\n", "In country SVN measure curfews was NEVER implemented\n", "In country SVN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SLB measure Health screenings in airports and border crossings was implemented on 2020-03-02 00:00:00\n", "In country SLB measure Introduction of isolation and quarantine policies was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Awareness campaigns was NEVER implemented\n", "In country SLB measure Emergency administrative structures activated or established was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Limit public gatherings was NEVER implemented\n", "In country SLB measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Limit product imports/exports was NEVER implemented\n", "In country SLB measure Border checks was NEVER implemented\n", "In country SLB measure International flights suspension was implemented on 2020-03-02 00:00:00\n", "In country SLB measure Surveillance and monitoring was implemented on 2020-04-10 00:00:00\n", "In country SLB measure Other public health measures enforced was NEVER implemented\n", "In country SLB measure Domestic travel restrictions was NEVER implemented\n", "In country SLB measure State of emergency declared was implemented on 2020-03-25 00:00:00\n", "In country SLB measure General recommendations was NEVER implemented\n", "In country SLB measure Partial lockdown was NEVER implemented\n", "In country SLB measure Checkpoints within the country was NEVER implemented\n", "In country SLB measure Economic measures was implemented on 2020-03-20 00:00:00\n", "In country SLB measure Curfews was implemented on 2020-04-10 00:00:00\n", "In country SLB measure Changes in prison-related policies was NEVER implemented\n", "In country SLB measure Public services closure was implemented on 2020-03-27 00:00:00\n", "In country SLB measure Military deployment was NEVER implemented\n", "In country SLB measure Full lockdown was NEVER implemented\n", "In country SLB measure Visa restrictions was implemented on 2020-03-02 00:00:00\n", "In country SLB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SLB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SLB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SLB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SLB measure Testing policy was NEVER implemented\n", "In country SLB measure Psychological assistance and medical social work was NEVER implemented\n", "In country SLB measure Mass population testing was NEVER implemented\n", "In country SLB measure testing policy was NEVER implemented\n", "In country SLB measure limit public gatherings was NEVER implemented\n", "In country SLB measure strengthening the public health system was NEVER implemented\n", "In country SLB measure Humanitarian exemptions was NEVER implemented\n", "In country SLB measure Complete border closure was NEVER implemented\n", "In country SLB measure curfews was NEVER implemented\n", "In country SLB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SOM measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SOM measure Introduction of isolation and quarantine policies was implemented on 2020-03-19 00:00:00\n", "In country SOM measure Awareness campaigns was NEVER implemented\n", "In country SOM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SOM measure Limit public gatherings was NEVER implemented\n", "In country SOM measure Border closure was NEVER implemented\n", "In country SOM measure Schools closure was implemented on 2020-03-31 00:00:00\n", "In country SOM measure Strengthening the public health system was NEVER implemented\n", "In country SOM measure Limit product imports/exports was NEVER implemented\n", "In country SOM measure Border checks was NEVER implemented\n", "In country SOM measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country SOM measure Surveillance and monitoring was implemented on 2020-03-18 00:00:00\n", "In country SOM measure Other public health measures enforced was NEVER implemented\n", "In country SOM measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country SOM measure State of emergency declared was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country SOM measure General recommendations was implemented on 2020-03-12 00:00:00\n", "In country SOM measure Partial lockdown was NEVER implemented\n", "In country SOM measure Checkpoints within the country was NEVER implemented\n", "In country SOM measure Economic measures was NEVER implemented\n", "In country SOM measure Curfews was implemented on 2020-04-15 00:00:00\n", "In country SOM measure Changes in prison-related policies was NEVER implemented\n", "In country SOM measure Public services closure was NEVER implemented\n", "In country SOM measure Military deployment was NEVER implemented\n", "In country SOM measure Full lockdown was NEVER implemented\n", "In country SOM measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country SOM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SOM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SOM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SOM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SOM measure Testing policy was NEVER implemented\n", "In country SOM measure Psychological assistance and medical social work was NEVER implemented\n", "In country SOM measure Mass population testing was NEVER implemented\n", "In country SOM measure testing policy was NEVER implemented\n", "In country SOM measure limit public gatherings was NEVER implemented\n", "In country SOM measure strengthening the public health system was NEVER implemented\n", "In country SOM measure Humanitarian exemptions was NEVER implemented\n", "In country SOM measure Complete border closure was NEVER implemented\n", "In country SOM measure curfews was NEVER implemented\n", "In country SOM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ZAF measure Health screenings in airports and border crossings was implemented on 2020-03-24 00:00:00\n", "In country ZAF measure Introduction of isolation and quarantine policies was implemented on 2020-03-27 00:00:00\n", "In country ZAF measure Awareness campaigns was NEVER implemented\n", "In country ZAF measure Emergency administrative structures activated or established was implemented on 2020-03-10 00:00:00\n", "In country ZAF measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country ZAF measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country ZAF measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country ZAF measure Strengthening the public health system was NEVER implemented\n", "In country ZAF measure Limit product imports/exports was NEVER implemented\n", "In country ZAF measure Border checks was NEVER implemented\n", "In country ZAF measure International flights suspension was implemented on 2020-03-27 00:00:00\n", "In country ZAF measure Surveillance and monitoring was NEVER implemented\n", "In country ZAF measure Other public health measures enforced was NEVER implemented\n", "In country ZAF measure Domestic travel restrictions was NEVER implemented\n", "In country ZAF measure State of emergency declared was implemented on 2020-03-15 00:00:00\n", "In country ZAF measure General recommendations was implemented on 2020-04-10 00:00:00\n", "In country ZAF measure Partial lockdown was NEVER implemented\n", "In country ZAF measure Checkpoints within the country was NEVER implemented\n", "In country ZAF measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country ZAF measure Curfews was NEVER implemented\n", "In country ZAF measure Changes in prison-related policies was NEVER implemented\n", "In country ZAF measure Public services closure was implemented on 2020-03-20 00:00:00\n", "In country ZAF measure Military deployment was implemented on 2020-03-27 00:00:00\n", "In country ZAF measure Full lockdown was implemented on 2020-03-27 00:00:00\n", "In country ZAF measure Visa restrictions was implemented on 2020-03-18 00:00:00\n", "In country ZAF measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ZAF measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ZAF measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ZAF measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ZAF measure Testing policy was implemented on 2020-03-19 00:00:00\n", "In country ZAF measure Psychological assistance and medical social work was NEVER implemented\n", "In country ZAF measure Mass population testing was implemented on 2020-03-30 00:00:00\n", "In country ZAF measure testing policy was NEVER implemented\n", "In country ZAF measure limit public gatherings was NEVER implemented\n", "In country ZAF measure strengthening the public health system was NEVER implemented\n", "In country ZAF measure Humanitarian exemptions was NEVER implemented\n", "In country ZAF measure Complete border closure was NEVER implemented\n", "In country ZAF measure curfews was NEVER implemented\n", "In country ZAF measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SSD measure Health screenings in airports and border crossings was implemented on 2020-02-20 00:00:00\n", "In country SSD measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country SSD measure Awareness campaigns was implemented on 2020-03-15 00:00:00\n", "In country SSD measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SSD measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country SSD measure Border closure was NEVER implemented\n", "In country SSD measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country SSD measure Strengthening the public health system was implemented on 2020-04-05 00:00:00\n", "In country SSD measure Limit product imports/exports was NEVER implemented\n", "In country SSD measure Border checks was NEVER implemented\n", "In country SSD measure International flights suspension was implemented on 2020-03-13 00:00:00\n", "In country SSD measure Surveillance and monitoring was NEVER implemented\n", "In country SSD measure Other public health measures enforced was NEVER implemented\n", "In country SSD measure Domestic travel restrictions was implemented on 2020-04-05 00:00:00\n", "In country SSD measure State of emergency declared was NEVER implemented\n", "In country SSD measure General recommendations was NEVER implemented\n", "In country SSD measure Partial lockdown was NEVER implemented\n", "In country SSD measure Checkpoints within the country was NEVER implemented\n", "In country SSD measure Economic measures was NEVER implemented\n", "In country SSD measure Curfews was implemented on 2020-03-25 00:00:00\n", "In country SSD measure Changes in prison-related policies was NEVER implemented\n", "In country SSD measure Public services closure was NEVER implemented\n", "In country SSD measure Military deployment was NEVER implemented\n", "In country SSD measure Full lockdown was NEVER implemented\n", "In country SSD measure Visa restrictions was NEVER implemented\n", "In country SSD measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SSD measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SSD measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SSD measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SSD measure Testing policy was NEVER implemented\n", "In country SSD measure Psychological assistance and medical social work was NEVER implemented\n", "In country SSD measure Mass population testing was NEVER implemented\n", "In country SSD measure testing policy was NEVER implemented\n", "In country SSD measure limit public gatherings was NEVER implemented\n", "In country SSD measure strengthening the public health system was NEVER implemented\n", "In country SSD measure Humanitarian exemptions was implemented on 2020-03-23 00:00:00\n", "In country SSD measure Complete border closure was NEVER implemented\n", "In country SSD measure curfews was NEVER implemented\n", "In country SSD measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ESP measure Health screenings in airports and border crossings was NEVER implemented\n", "In country ESP measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country ESP measure Awareness campaigns was implemented on 2020-04-08 00:00:00\n", "In country ESP measure Emergency administrative structures activated or established was NEVER implemented\n", "In country ESP measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ESP measure Border closure was implemented on 2020-03-15 00:00:00\n", "In country ESP measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country ESP measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country ESP measure Limit product imports/exports was NEVER implemented\n", "In country ESP measure Border checks was implemented on 2020-03-15 00:00:00\n", "In country ESP measure International flights suspension was implemented on 2020-03-24 00:00:00\n", "In country ESP measure Surveillance and monitoring was implemented on 2020-04-01 00:00:00\n", "In country ESP measure Other public health measures enforced was implemented on 2020-04-02 00:00:00\n", "In country ESP measure Domestic travel restrictions was NEVER implemented\n", "In country ESP measure State of emergency declared was implemented on 2020-03-13 00:00:00\n", "In country ESP measure General recommendations was implemented on 2020-03-15 00:00:00\n", "In country ESP measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country ESP measure Checkpoints within the country was NEVER implemented\n", "In country ESP measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country ESP measure Curfews was NEVER implemented\n", "In country ESP measure Changes in prison-related policies was implemented on 2020-03-16 00:00:00\n", "In country ESP measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country ESP measure Military deployment was implemented on 2020-03-14 00:00:00\n", "In country ESP measure Full lockdown was implemented on 2020-03-13 00:00:00\n", "In country ESP measure Visa restrictions was NEVER implemented\n", "In country ESP measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ESP measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ESP measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ESP measure Amendments to funeral and burial regulations was implemented on 2020-03-30 00:00:00\n", "In country ESP measure Testing policy was implemented on 2020-04-05 00:00:00\n", "In country ESP measure Psychological assistance and medical social work was implemented on 2020-03-31 00:00:00\n", "In country ESP measure Mass population testing was NEVER implemented\n", "In country ESP measure testing policy was NEVER implemented\n", "In country ESP measure limit public gatherings was NEVER implemented\n", "In country ESP measure strengthening the public health system was NEVER implemented\n", "In country ESP measure Humanitarian exemptions was NEVER implemented\n", "In country ESP measure Complete border closure was NEVER implemented\n", "In country ESP measure curfews was NEVER implemented\n", "In country ESP measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country LKA measure Health screenings in airports and border crossings was implemented on 2020-03-16 00:00:00\n", "In country LKA measure Introduction of isolation and quarantine policies was implemented on 2020-02-24 00:00:00\n", "In country LKA measure Awareness campaigns was implemented on 2020-03-12 00:00:00\n", "In country LKA measure Emergency administrative structures activated or established was implemented on 2020-03-14 00:00:00\n", "In country LKA measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country LKA measure Border closure was implemented on 2020-03-27 00:00:00\n", "In country LKA measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country LKA measure Strengthening the public health system was implemented on 2020-03-18 00:00:00\n", "In country LKA measure Limit product imports/exports was NEVER implemented\n", "In country LKA measure Border checks was NEVER implemented\n", "In country LKA measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country LKA measure Surveillance and monitoring was implemented on 2020-04-04 00:00:00\n", "In country LKA measure Other public health measures enforced was NEVER implemented\n", "In country LKA measure Domestic travel restrictions was implemented on 2020-03-24 00:00:00\n", "In country LKA measure State of emergency declared was NEVER implemented\n", "In country LKA measure General recommendations was implemented on 2020-04-11 00:00:00\n", "In country LKA measure Partial lockdown was NEVER implemented\n", "In country LKA measure Checkpoints within the country was NEVER implemented\n", "In country LKA measure Economic measures was implemented on 2020-03-20 00:00:00\n", "In country LKA measure Curfews was implemented on 2020-03-19 00:00:00\n", "In country LKA measure Changes in prison-related policies was implemented on 2020-03-17 00:00:00\n", "In country LKA measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country LKA measure Military deployment was implemented on 2020-04-10 00:00:00\n", "In country LKA measure Full lockdown was implemented on 2020-03-29 00:00:00\n", "In country LKA measure Visa restrictions was implemented on 2020-03-16 00:00:00\n", "In country LKA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country LKA measure Additional health/documents requirements upon arrival was implemented on 2020-03-16 00:00:00\n", "In country LKA measure Requirement to wear protective gear in public was implemented on 2020-04-11 00:00:00\n", "In country LKA measure Amendments to funeral and burial regulations was implemented on 2020-04-12 00:00:00\n", "In country LKA measure Testing policy was implemented on 2020-04-05 00:00:00\n", "In country LKA measure Psychological assistance and medical social work was implemented on 2020-03-31 00:00:00\n", "In country LKA measure Mass population testing was NEVER implemented\n", "In country LKA measure testing policy was NEVER implemented\n", "In country LKA measure limit public gatherings was NEVER implemented\n", "In country LKA measure strengthening the public health system was NEVER implemented\n", "In country LKA measure Humanitarian exemptions was NEVER implemented\n", "In country LKA measure Complete border closure was NEVER implemented\n", "In country LKA measure curfews was NEVER implemented\n", "In country LKA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country SDN measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SDN measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SDN measure Awareness campaigns was NEVER implemented\n", "In country SDN measure Emergency administrative structures activated or established was implemented on 2020-01-20 00:00:00\n", "In country SDN measure Limit public gatherings was implemented on 2020-03-26 00:00:00\n", "In country SDN measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country SDN measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country SDN measure Strengthening the public health system was NEVER implemented\n", "In country SDN measure Limit product imports/exports was NEVER implemented\n", "In country SDN measure Border checks was NEVER implemented\n", "In country SDN measure International flights suspension was implemented on 2020-03-16 00:00:00\n", "In country SDN measure Surveillance and monitoring was NEVER implemented\n", "In country SDN measure Other public health measures enforced was NEVER implemented\n", "In country SDN measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country SDN measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country SDN measure General recommendations was NEVER implemented\n", "In country SDN measure Partial lockdown was implemented on 2020-04-18 00:00:00\n", "In country SDN measure Checkpoints within the country was implemented on 2020-01-20 00:00:00\n", "In country SDN measure Economic measures was NEVER implemented\n", "In country SDN measure Curfews was implemented on 2020-03-24 00:00:00\n", "In country SDN measure Changes in prison-related policies was NEVER implemented\n", "In country SDN measure Public services closure was NEVER implemented\n", "In country SDN measure Military deployment was NEVER implemented\n", "In country SDN measure Full lockdown was NEVER implemented\n", "In country SDN measure Visa restrictions was NEVER implemented\n", "In country SDN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SDN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SDN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SDN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SDN measure Testing policy was NEVER implemented\n", "In country SDN measure Psychological assistance and medical social work was NEVER implemented\n", "In country SDN measure Mass population testing was NEVER implemented\n", "In country SDN measure testing policy was NEVER implemented\n", "In country SDN measure limit public gatherings was NEVER implemented\n", "In country SDN measure strengthening the public health system was NEVER implemented\n", "In country SDN measure Humanitarian exemptions was NEVER implemented\n", "In country SDN measure Complete border closure was NEVER implemented\n", "In country SDN measure curfews was NEVER implemented\n", "In country SDN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SUR measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country SUR measure Introduction of isolation and quarantine policies was implemented on 2020-04-06 00:00:00\n", "In country SUR measure Awareness campaigns was NEVER implemented\n", "In country SUR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SUR measure Limit public gatherings was implemented on 2020-03-27 00:00:00\n", "In country SUR measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country SUR measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country SUR measure Strengthening the public health system was implemented on 2020-03-23 00:00:00\n", "In country SUR measure Limit product imports/exports was NEVER implemented\n", "In country SUR measure Border checks was NEVER implemented\n", "In country SUR measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country SUR measure Surveillance and monitoring was implemented on 2020-03-26 00:00:00\n", "In country SUR measure Other public health measures enforced was implemented on 2020-04-03 00:00:00\n", "In country SUR measure Domestic travel restrictions was NEVER implemented\n", "In country SUR measure State of emergency declared was NEVER implemented\n", "In country SUR measure General recommendations was implemented on 2020-03-14 00:00:00\n", "In country SUR measure Partial lockdown was NEVER implemented\n", "In country SUR measure Checkpoints within the country was NEVER implemented\n", "In country SUR measure Economic measures was NEVER implemented\n", "In country SUR measure Curfews was implemented on 2020-03-29 00:00:00\n", "In country SUR measure Changes in prison-related policies was NEVER implemented\n", "In country SUR measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country SUR measure Military deployment was NEVER implemented\n", "In country SUR measure Full lockdown was NEVER implemented\n", "In country SUR measure Visa restrictions was NEVER implemented\n", "In country SUR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SUR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SUR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SUR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SUR measure Testing policy was NEVER implemented\n", "In country SUR measure Psychological assistance and medical social work was NEVER implemented\n", "In country SUR measure Mass population testing was NEVER implemented\n", "In country SUR measure testing policy was NEVER implemented\n", "In country SUR measure limit public gatherings was NEVER implemented\n", "In country SUR measure strengthening the public health system was NEVER implemented\n", "In country SUR measure Humanitarian exemptions was NEVER implemented\n", "In country SUR measure Complete border closure was NEVER implemented\n", "In country SUR measure curfews was NEVER implemented\n", "In country SUR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SWE measure Health screenings in airports and border crossings was NEVER implemented\n", "In country SWE measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country SWE measure Awareness campaigns was NEVER implemented\n", "In country SWE measure Emergency administrative structures activated or established was implemented on 2020-02-01 00:00:00\n", "In country SWE measure Limit public gatherings was implemented on 2020-03-12 00:00:00\n", "In country SWE measure Border closure was implemented on 2020-03-19 00:00:00\n", "In country SWE measure Schools closure was NEVER implemented\n", "In country SWE measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country SWE measure Limit product imports/exports was NEVER implemented\n", "In country SWE measure Border checks was NEVER implemented\n", "In country SWE measure International flights suspension was NEVER implemented\n", "In country SWE measure Surveillance and monitoring was NEVER implemented\n", "In country SWE measure Other public health measures enforced was implemented on 2020-04-01 00:00:00\n", "In country SWE measure Domestic travel restrictions was NEVER implemented\n", "In country SWE measure State of emergency declared was NEVER implemented\n", "In country SWE measure General recommendations was implemented on 2020-03-14 00:00:00\n", "In country SWE measure Partial lockdown was NEVER implemented\n", "In country SWE measure Checkpoints within the country was NEVER implemented\n", "In country SWE measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country SWE measure Curfews was NEVER implemented\n", "In country SWE measure Changes in prison-related policies was NEVER implemented\n", "In country SWE measure Public services closure was NEVER implemented\n", "In country SWE measure Military deployment was NEVER implemented\n", "In country SWE measure Full lockdown was NEVER implemented\n", "In country SWE measure Visa restrictions was NEVER implemented\n", "In country SWE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SWE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SWE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SWE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SWE measure Testing policy was NEVER implemented\n", "In country SWE measure Psychological assistance and medical social work was NEVER implemented\n", "In country SWE measure Mass population testing was NEVER implemented\n", "In country SWE measure testing policy was NEVER implemented\n", "In country SWE measure limit public gatherings was NEVER implemented\n", "In country SWE measure strengthening the public health system was implemented on 2020-04-03 00:00:00\n", "In country SWE measure Humanitarian exemptions was NEVER implemented\n", "In country SWE measure Complete border closure was NEVER implemented\n", "In country SWE measure curfews was NEVER implemented\n", "In country SWE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country CHE measure Health screenings in airports and border crossings was NEVER implemented\n", "In country CHE measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country CHE measure Awareness campaigns was implemented on 2020-03-01 00:00:00\n", "In country CHE measure Emergency administrative structures activated or established was implemented on 2020-03-31 00:00:00\n", "In country CHE measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country CHE measure Border closure was implemented on 2020-03-11 00:00:00\n", "In country CHE measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country CHE measure Strengthening the public health system was implemented on 2020-03-19 00:00:00\n", "In country CHE measure Limit product imports/exports was implemented on 2020-03-26 00:00:00\n", "In country CHE measure Border checks was implemented on 2020-02-13 00:00:00\n", "In country CHE measure International flights suspension was implemented on 2020-03-25 00:00:00\n", "In country CHE measure Surveillance and monitoring was implemented on 2020-03-27 00:00:00\n", "In country CHE measure Other public health measures enforced was NEVER implemented\n", "In country CHE measure Domestic travel restrictions was NEVER implemented\n", "In country CHE measure State of emergency declared was implemented on 2020-03-16 00:00:00\n", "In country CHE measure General recommendations was implemented on 2020-03-19 00:00:00\n", "In country CHE measure Partial lockdown was implemented on 2020-04-08 00:00:00\n", "In country CHE measure Checkpoints within the country was NEVER implemented\n", "In country CHE measure Economic measures was implemented on 2020-03-13 00:00:00\n", "In country CHE measure Curfews was NEVER implemented\n", "In country CHE measure Changes in prison-related policies was implemented on UNKNOWN DATE\n", "In country CHE measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country CHE measure Military deployment was implemented on 2020-03-16 00:00:00\n", "In country CHE measure Full lockdown was implemented on 2020-03-23 00:00:00\n", "In country CHE measure Visa restrictions was implemented on 2020-02-13 00:00:00\n", "In country CHE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country CHE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country CHE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country CHE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country CHE measure Testing policy was implemented on 2020-03-07 00:00:00\n", "In country CHE measure Psychological assistance and medical social work was NEVER implemented\n", "In country CHE measure Mass population testing was NEVER implemented\n", "In country CHE measure testing policy was NEVER implemented\n", "In country CHE measure limit public gatherings was NEVER implemented\n", "In country CHE measure strengthening the public health system was NEVER implemented\n", "In country CHE measure Humanitarian exemptions was NEVER implemented\n", "In country CHE measure Complete border closure was NEVER implemented\n", "In country CHE measure curfews was NEVER implemented\n", "In country CHE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country SYR measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country SYR measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country SYR measure Awareness campaigns was NEVER implemented\n", "In country SYR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country SYR measure Limit public gatherings was NEVER implemented\n", "In country SYR measure Border closure was implemented on 2020-03-22 00:00:00\n", "In country SYR measure Schools closure was implemented on 2020-03-14 00:00:00\n", "In country SYR measure Strengthening the public health system was implemented on 2020-03-20 00:00:00\n", "In country SYR measure Limit product imports/exports was NEVER implemented\n", "In country SYR measure Border checks was implemented on 2020-04-10 00:00:00\n", "In country SYR measure International flights suspension was implemented on 2020-03-25 00:00:00\n", "In country SYR measure Surveillance and monitoring was NEVER implemented\n", "In country SYR measure Other public health measures enforced was NEVER implemented\n", "In country SYR measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country SYR measure State of emergency declared was NEVER implemented\n", "In country SYR measure General recommendations was NEVER implemented\n", "In country SYR measure Partial lockdown was implemented on 2020-04-02 00:00:00\n", "In country SYR measure Checkpoints within the country was NEVER implemented\n", "In country SYR measure Economic measures was implemented on 2020-03-13 00:00:00\n", "In country SYR measure Curfews was implemented on 2020-03-25 00:00:00\n", "In country SYR measure Changes in prison-related policies was implemented on 2020-04-02 00:00:00\n", "In country SYR measure Public services closure was implemented on 2020-03-14 00:00:00\n", "In country SYR measure Military deployment was NEVER implemented\n", "In country SYR measure Full lockdown was implemented on 2020-04-02 00:00:00\n", "In country SYR measure Visa restrictions was implemented on 2020-03-19 00:00:00\n", "In country SYR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country SYR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country SYR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country SYR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country SYR measure Testing policy was implemented on 2020-03-26 00:00:00\n", "In country SYR measure Psychological assistance and medical social work was NEVER implemented\n", "In country SYR measure Mass population testing was NEVER implemented\n", "In country SYR measure testing policy was NEVER implemented\n", "In country SYR measure limit public gatherings was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country SYR measure strengthening the public health system was NEVER implemented\n", "In country SYR measure Humanitarian exemptions was NEVER implemented\n", "In country SYR measure Complete border closure was NEVER implemented\n", "In country SYR measure curfews was NEVER implemented\n", "In country SYR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TJK measure Health screenings in airports and border crossings was NEVER implemented\n", "In country TJK measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country TJK measure Awareness campaigns was NEVER implemented\n", "In country TJK measure Emergency administrative structures activated or established was implemented on 2020-04-03 00:00:00\n", "In country TJK measure Limit public gatherings was implemented on 2020-04-05 00:00:00\n", "In country TJK measure Border closure was NEVER implemented\n", "In country TJK measure Schools closure was NEVER implemented\n", "In country TJK measure Strengthening the public health system was NEVER implemented\n", "In country TJK measure Limit product imports/exports was NEVER implemented\n", "In country TJK measure Border checks was NEVER implemented\n", "In country TJK measure International flights suspension was implemented on 2020-02-24 00:00:00\n", "In country TJK measure Surveillance and monitoring was NEVER implemented\n", "In country TJK measure Other public health measures enforced was NEVER implemented\n", "In country TJK measure Domestic travel restrictions was NEVER implemented\n", "In country TJK measure State of emergency declared was NEVER implemented\n", "In country TJK measure General recommendations was implemented on 2020-03-04 00:00:00\n", "In country TJK measure Partial lockdown was NEVER implemented\n", "In country TJK measure Checkpoints within the country was NEVER implemented\n", "In country TJK measure Economic measures was NEVER implemented\n", "In country TJK measure Curfews was NEVER implemented\n", "In country TJK measure Changes in prison-related policies was implemented on 2020-03-31 00:00:00\n", "In country TJK measure Public services closure was NEVER implemented\n", "In country TJK measure Military deployment was NEVER implemented\n", "In country TJK measure Full lockdown was NEVER implemented\n", "In country TJK measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country TJK measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TJK measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TJK measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TJK measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TJK measure Testing policy was NEVER implemented\n", "In country TJK measure Psychological assistance and medical social work was NEVER implemented\n", "In country TJK measure Mass population testing was NEVER implemented\n", "In country TJK measure testing policy was NEVER implemented\n", "In country TJK measure limit public gatherings was NEVER implemented\n", "In country TJK measure strengthening the public health system was NEVER implemented\n", "In country TJK measure Humanitarian exemptions was NEVER implemented\n", "In country TJK measure Complete border closure was NEVER implemented\n", "In country TJK measure curfews was NEVER implemented\n", "In country TJK measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TZA measure Health screenings in airports and border crossings was implemented on 2020-02-25 00:00:00\n", "In country TZA measure Introduction of isolation and quarantine policies was implemented on 2020-03-23 00:00:00\n", "In country TZA measure Awareness campaigns was NEVER implemented\n", "In country TZA measure Emergency administrative structures activated or established was implemented on 2020-04-03 00:00:00\n", "In country TZA measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country TZA measure Border closure was NEVER implemented\n", "In country TZA measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country TZA measure Strengthening the public health system was NEVER implemented\n", "In country TZA measure Limit product imports/exports was NEVER implemented\n", "In country TZA measure Border checks was NEVER implemented\n", "In country TZA measure International flights suspension was implemented on 2020-04-11 00:00:00\n", "In country TZA measure Surveillance and monitoring was NEVER implemented\n", "In country TZA measure Other public health measures enforced was NEVER implemented\n", "In country TZA measure Domestic travel restrictions was NEVER implemented\n", "In country TZA measure State of emergency declared was NEVER implemented\n", "In country TZA measure General recommendations was implemented on 2020-03-20 00:00:00\n", "In country TZA measure Partial lockdown was NEVER implemented\n", "In country TZA measure Checkpoints within the country was NEVER implemented\n", "In country TZA measure Economic measures was NEVER implemented\n", "In country TZA measure Curfews was NEVER implemented\n", "In country TZA measure Changes in prison-related policies was NEVER implemented\n", "In country TZA measure Public services closure was NEVER implemented\n", "In country TZA measure Military deployment was NEVER implemented\n", "In country TZA measure Full lockdown was NEVER implemented\n", "In country TZA measure Visa restrictions was NEVER implemented\n", "In country TZA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TZA measure Additional health/documents requirements upon arrival was implemented on 2020-03-23 00:00:00\n", "In country TZA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TZA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TZA measure Testing policy was NEVER implemented\n", "In country TZA measure Psychological assistance and medical social work was NEVER implemented\n", "In country TZA measure Mass population testing was NEVER implemented\n", "In country TZA measure testing policy was NEVER implemented\n", "In country TZA measure limit public gatherings was NEVER implemented\n", "In country TZA measure strengthening the public health system was NEVER implemented\n", "In country TZA measure Humanitarian exemptions was NEVER implemented\n", "In country TZA measure Complete border closure was NEVER implemented\n", "In country TZA measure curfews was NEVER implemented\n", "In country TZA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country THA measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country THA measure Introduction of isolation and quarantine policies was implemented on 2020-03-14 00:00:00\n", "In country THA measure Awareness campaigns was implemented on 2020-01-26 00:00:00\n", "In country THA measure Emergency administrative structures activated or established was implemented on 2020-01-22 00:00:00\n", "In country THA measure Limit public gatherings was NEVER implemented\n", "In country THA measure Border closure was implemented on 2020-03-31 00:00:00\n", "In country THA measure Schools closure was implemented on 2020-03-18 00:00:00\n", "In country THA measure Strengthening the public health system was implemented on 2020-01-18 00:00:00\n", "In country THA measure Limit product imports/exports was NEVER implemented\n", "In country THA measure Border checks was implemented on 2020-03-31 00:00:00\n", "In country THA measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country THA measure Surveillance and monitoring was implemented on 2020-01-03 00:00:00\n", "In country THA measure Other public health measures enforced was NEVER implemented\n", "In country THA measure Domestic travel restrictions was implemented on 2020-02-20 00:00:00\n", "In country THA measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country THA measure General recommendations was implemented on 2020-01-21 00:00:00\n", "In country THA measure Partial lockdown was implemented on 2020-02-22 00:00:00\n", "In country THA measure Checkpoints within the country was implemented on 2020-01-18 00:00:00\n", "In country THA measure Economic measures was NEVER implemented\n", "In country THA measure Curfews was implemented on 2020-04-10 00:00:00\n", "In country THA measure Changes in prison-related policies was NEVER implemented\n", "In country THA measure Public services closure was implemented on 2020-03-22 00:00:00\n", "In country THA measure Military deployment was NEVER implemented\n", "In country THA measure Full lockdown was implemented on 2020-04-09 00:00:00\n", "In country THA measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country THA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country THA measure Additional health/documents requirements upon arrival was implemented on 2020-03-14 00:00:00\n", "In country THA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country THA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country THA measure Testing policy was implemented on 2020-02-17 00:00:00\n", "In country THA measure Psychological assistance and medical social work was implemented on 2020-02-07 00:00:00\n", "In country THA measure Mass population testing was NEVER implemented\n", "In country THA measure testing policy was NEVER implemented\n", "In country THA measure limit public gatherings was NEVER implemented\n", "In country THA measure strengthening the public health system was NEVER implemented\n", "In country THA measure Humanitarian exemptions was NEVER implemented\n", "In country THA measure Complete border closure was NEVER implemented\n", "In country THA measure curfews was NEVER implemented\n", "In country THA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TLS measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country TLS measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country TLS measure Awareness campaigns was NEVER implemented\n", "In country TLS measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TLS measure Limit public gatherings was NEVER implemented\n", "In country TLS measure Border closure was NEVER implemented\n", "In country TLS measure Schools closure was NEVER implemented\n", "In country TLS measure Strengthening the public health system was NEVER implemented\n", "In country TLS measure Limit product imports/exports was NEVER implemented\n", "In country TLS measure Border checks was NEVER implemented\n", "In country TLS measure International flights suspension was NEVER implemented\n", "In country TLS measure Surveillance and monitoring was NEVER implemented\n", "In country TLS measure Other public health measures enforced was NEVER implemented\n", "In country TLS measure Domestic travel restrictions was NEVER implemented\n", "In country TLS measure State of emergency declared was NEVER implemented\n", "In country TLS measure General recommendations was NEVER implemented\n", "In country TLS measure Partial lockdown was NEVER implemented\n", "In country TLS measure Checkpoints within the country was NEVER implemented\n", "In country TLS measure Economic measures was NEVER implemented\n", "In country TLS measure Curfews was NEVER implemented\n", "In country TLS measure Changes in prison-related policies was NEVER implemented\n", "In country TLS measure Public services closure was NEVER implemented\n", "In country TLS measure Military deployment was NEVER implemented\n", "In country TLS measure Full lockdown was NEVER implemented\n", "In country TLS measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country TLS measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TLS measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TLS measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TLS measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TLS measure Testing policy was NEVER implemented\n", "In country TLS measure Psychological assistance and medical social work was NEVER implemented\n", "In country TLS measure Mass population testing was NEVER implemented\n", "In country TLS measure testing policy was NEVER implemented\n", "In country TLS measure limit public gatherings was NEVER implemented\n", "In country TLS measure strengthening the public health system was NEVER implemented\n", "In country TLS measure Humanitarian exemptions was NEVER implemented\n", "In country TLS measure Complete border closure was NEVER implemented\n", "In country TLS measure curfews was NEVER implemented\n", "In country TLS measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TGO measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country TGO measure Introduction of isolation and quarantine policies was implemented on 2020-03-16 00:00:00\n", "In country TGO measure Awareness campaigns was NEVER implemented\n", "In country TGO measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TGO measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country TGO measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country TGO measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country TGO measure Strengthening the public health system was implemented on 2020-03-21 00:00:00\n", "In country TGO measure Limit product imports/exports was NEVER implemented\n", "In country TGO measure Border checks was NEVER implemented\n", "In country TGO measure International flights suspension was implemented on 2020-03-20 00:00:00\n", "In country TGO measure Surveillance and monitoring was NEVER implemented\n", "In country TGO measure Other public health measures enforced was NEVER implemented\n", "In country TGO measure Domestic travel restrictions was implemented on 2020-04-01 00:00:00\n", "In country TGO measure State of emergency declared was implemented on 2020-04-01 00:00:00\n", "In country TGO measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country TGO measure Partial lockdown was implemented on 2020-03-21 00:00:00\n", "In country TGO measure Checkpoints within the country was NEVER implemented\n", "In country TGO measure Economic measures was implemented on 2020-03-16 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country TGO measure Curfews was implemented on 2020-04-02 00:00:00\n", "In country TGO measure Changes in prison-related policies was NEVER implemented\n", "In country TGO measure Public services closure was implemented on 2020-03-16 00:00:00\n", "In country TGO measure Military deployment was implemented on 2020-04-01 00:00:00\n", "In country TGO measure Full lockdown was NEVER implemented\n", "In country TGO measure Visa restrictions was NEVER implemented\n", "In country TGO measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TGO measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TGO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TGO measure Amendments to funeral and burial regulations was implemented on 2020-03-20 00:00:00\n", "In country TGO measure Testing policy was implemented on 2020-04-01 00:00:00\n", "In country TGO measure Psychological assistance and medical social work was NEVER implemented\n", "In country TGO measure Mass population testing was NEVER implemented\n", "In country TGO measure testing policy was NEVER implemented\n", "In country TGO measure limit public gatherings was NEVER implemented\n", "In country TGO measure strengthening the public health system was NEVER implemented\n", "In country TGO measure Humanitarian exemptions was NEVER implemented\n", "In country TGO measure Complete border closure was NEVER implemented\n", "In country TGO measure curfews was NEVER implemented\n", "In country TGO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TON measure Health screenings in airports and border crossings was NEVER implemented\n", "In country TON measure Introduction of isolation and quarantine policies was implemented on 2020-03-05 00:00:00\n", "In country TON measure Awareness campaigns was implemented on 2020-04-05 00:00:00\n", "In country TON measure Emergency administrative structures activated or established was implemented on 2020-03-18 00:00:00\n", "In country TON measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country TON measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country TON measure Schools closure was implemented on 2020-03-26 00:00:00\n", "In country TON measure Strengthening the public health system was implemented on 2020-04-11 00:00:00\n", "In country TON measure Limit product imports/exports was NEVER implemented\n", "In country TON measure Border checks was NEVER implemented\n", "In country TON measure International flights suspension was implemented on 2020-03-29 00:00:00\n", "In country TON measure Surveillance and monitoring was NEVER implemented\n", "In country TON measure Other public health measures enforced was NEVER implemented\n", "In country TON measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country TON measure State of emergency declared was implemented on 2020-03-20 00:00:00\n", "In country TON measure General recommendations was NEVER implemented\n", "In country TON measure Partial lockdown was implemented on 2020-03-29 00:00:00\n", "In country TON measure Checkpoints within the country was NEVER implemented\n", "In country TON measure Economic measures was implemented on 2020-03-26 00:00:00\n", "In country TON measure Curfews was implemented on 2020-03-26 00:00:00\n", "In country TON measure Changes in prison-related policies was NEVER implemented\n", "In country TON measure Public services closure was implemented on 2020-03-26 00:00:00\n", "In country TON measure Military deployment was NEVER implemented\n", "In country TON measure Full lockdown was NEVER implemented\n", "In country TON measure Visa restrictions was implemented on 2020-03-05 00:00:00\n", "In country TON measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TON measure Additional health/documents requirements upon arrival was implemented on 2020-03-05 00:00:00\n", "In country TON measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TON measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TON measure Testing policy was NEVER implemented\n", "In country TON measure Psychological assistance and medical social work was NEVER implemented\n", "In country TON measure Mass population testing was NEVER implemented\n", "In country TON measure testing policy was NEVER implemented\n", "In country TON measure limit public gatherings was NEVER implemented\n", "In country TON measure strengthening the public health system was NEVER implemented\n", "In country TON measure Humanitarian exemptions was NEVER implemented\n", "In country TON measure Complete border closure was NEVER implemented\n", "In country TON measure curfews was NEVER implemented\n", "In country TON measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TTO measure Health screenings in airports and border crossings was NEVER implemented\n", "In country TTO measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country TTO measure Awareness campaigns was NEVER implemented\n", "In country TTO measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TTO measure Limit public gatherings was NEVER implemented\n", "In country TTO measure Border closure was NEVER implemented\n", "In country TTO measure Schools closure was NEVER implemented\n", "In country TTO measure Strengthening the public health system was NEVER implemented\n", "In country TTO measure Limit product imports/exports was NEVER implemented\n", "In country TTO measure Border checks was NEVER implemented\n", "In country TTO measure International flights suspension was NEVER implemented\n", "In country TTO measure Surveillance and monitoring was NEVER implemented\n", "In country TTO measure Other public health measures enforced was NEVER implemented\n", "In country TTO measure Domestic travel restrictions was NEVER implemented\n", "In country TTO measure State of emergency declared was NEVER implemented\n", "In country TTO measure General recommendations was NEVER implemented\n", "In country TTO measure Partial lockdown was NEVER implemented\n", "In country TTO measure Checkpoints within the country was NEVER implemented\n", "In country TTO measure Economic measures was NEVER implemented\n", "In country TTO measure Curfews was NEVER implemented\n", "In country TTO measure Changes in prison-related policies was NEVER implemented\n", "In country TTO measure Public services closure was NEVER implemented\n", "In country TTO measure Military deployment was NEVER implemented\n", "In country TTO measure Full lockdown was NEVER implemented\n", "In country TTO measure Visa restrictions was implemented on 2020-03-03 00:00:00\n", "In country TTO measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TTO measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TTO measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TTO measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TTO measure Testing policy was NEVER implemented\n", "In country TTO measure Psychological assistance and medical social work was NEVER implemented\n", "In country TTO measure Mass population testing was NEVER implemented\n", "In country TTO measure testing policy was NEVER implemented\n", "In country TTO measure limit public gatherings was NEVER implemented\n", "In country TTO measure strengthening the public health system was NEVER implemented\n", "In country TTO measure Humanitarian exemptions was NEVER implemented\n", "In country TTO measure Complete border closure was NEVER implemented\n", "In country TTO measure curfews was NEVER implemented\n", "In country TTO measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TUN measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country TUN measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country TUN measure Awareness campaigns was NEVER implemented\n", "In country TUN measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TUN measure Limit public gatherings was implemented on 2020-03-13 00:00:00\n", "In country TUN measure Border closure was implemented on 2020-03-13 00:00:00\n", "In country TUN measure Schools closure was NEVER implemented\n", "In country TUN measure Strengthening the public health system was NEVER implemented\n", "In country TUN measure Limit product imports/exports was NEVER implemented\n", "In country TUN measure Border checks was NEVER implemented\n", "In country TUN measure International flights suspension was implemented on 2020-03-10 00:00:00\n", "In country TUN measure Surveillance and monitoring was NEVER implemented\n", "In country TUN measure Other public health measures enforced was NEVER implemented\n", "In country TUN measure Domestic travel restrictions was NEVER implemented\n", "In country TUN measure State of emergency declared was NEVER implemented\n", "In country TUN measure General recommendations was NEVER implemented\n", "In country TUN measure Partial lockdown was NEVER implemented\n", "In country TUN measure Checkpoints within the country was NEVER implemented\n", "In country TUN measure Economic measures was NEVER implemented\n", "In country TUN measure Curfews was NEVER implemented\n", "In country TUN measure Changes in prison-related policies was NEVER implemented\n", "In country TUN measure Public services closure was NEVER implemented\n", "In country TUN measure Military deployment was NEVER implemented\n", "In country TUN measure Full lockdown was NEVER implemented\n", "In country TUN measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country TUN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TUN measure Additional health/documents requirements upon arrival was implemented on 2020-03-13 00:00:00\n", "In country TUN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TUN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TUN measure Testing policy was NEVER implemented\n", "In country TUN measure Psychological assistance and medical social work was NEVER implemented\n", "In country TUN measure Mass population testing was NEVER implemented\n", "In country TUN measure testing policy was NEVER implemented\n", "In country TUN measure limit public gatherings was NEVER implemented\n", "In country TUN measure strengthening the public health system was NEVER implemented\n", "In country TUN measure Humanitarian exemptions was NEVER implemented\n", "In country TUN measure Complete border closure was NEVER implemented\n", "In country TUN measure curfews was NEVER implemented\n", "In country TUN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TUR measure Health screenings in airports and border crossings was implemented on 2020-01-24 00:00:00\n", "In country TUR measure Introduction of isolation and quarantine policies was implemented on 2020-02-16 00:00:00\n", "In country TUR measure Awareness campaigns was implemented on 2020-03-30 00:00:00\n", "In country TUR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TUR measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country TUR measure Border closure was implemented on 2020-03-18 00:00:00\n", "In country TUR measure Schools closure was implemented on 2020-03-16 00:00:00\n", "In country TUR measure Strengthening the public health system was NEVER implemented\n", "In country TUR measure Limit product imports/exports was NEVER implemented\n", "In country TUR measure Border checks was implemented on 2020-02-16 00:00:00\n", "In country TUR measure International flights suspension was implemented on 2020-02-05 00:00:00\n", "In country TUR measure Surveillance and monitoring was NEVER implemented\n", "In country TUR measure Other public health measures enforced was NEVER implemented\n", "In country TUR measure Domestic travel restrictions was implemented on 2020-03-29 00:00:00\n", "In country TUR measure State of emergency declared was NEVER implemented\n", "In country TUR measure General recommendations was NEVER implemented\n", "In country TUR measure Partial lockdown was implemented on 2020-03-18 00:00:00\n", "In country TUR measure Checkpoints within the country was NEVER implemented\n", "In country TUR measure Economic measures was NEVER implemented\n", "In country TUR measure Curfews was implemented on 2020-03-21 00:00:00\n", "In country TUR measure Changes in prison-related policies was NEVER implemented\n", "In country TUR measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country TUR measure Military deployment was NEVER implemented\n", "In country TUR measure Full lockdown was NEVER implemented\n", "In country TUR measure Visa restrictions was implemented on 2020-04-01 00:00:00\n", "In country TUR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TUR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TUR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TUR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TUR measure Testing policy was NEVER implemented\n", "In country TUR measure Psychological assistance and medical social work was NEVER implemented\n", "In country TUR measure Mass population testing was NEVER implemented\n", "In country TUR measure testing policy was NEVER implemented\n", "In country TUR measure limit public gatherings was NEVER implemented\n", "In country TUR measure strengthening the public health system was NEVER implemented\n", "In country TUR measure Humanitarian exemptions was NEVER implemented\n", "In country TUR measure Complete border closure was NEVER implemented\n", "In country TUR measure curfews was NEVER implemented\n", "In country TUR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country TKM measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country TKM measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country TKM measure Awareness campaigns was implemented on 2020-03-31 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country TKM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TKM measure Limit public gatherings was implemented on UNKNOWN DATE\n", "In country TKM measure Border closure was implemented on UNKNOWN DATE\n", "In country TKM measure Schools closure was NEVER implemented\n", "In country TKM measure Strengthening the public health system was implemented on 2020-03-05 00:00:00\n", "In country TKM measure Limit product imports/exports was implemented on 2020-04-01 00:00:00\n", "In country TKM measure Border checks was NEVER implemented\n", "In country TKM measure International flights suspension was implemented on UNKNOWN DATE\n", "In country TKM measure Surveillance and monitoring was NEVER implemented\n", "In country TKM measure Other public health measures enforced was NEVER implemented\n", "In country TKM measure Domestic travel restrictions was implemented on 2020-03-20 00:00:00\n", "In country TKM measure State of emergency declared was NEVER implemented\n", "In country TKM measure General recommendations was NEVER implemented\n", "In country TKM measure Partial lockdown was NEVER implemented\n", "In country TKM measure Checkpoints within the country was NEVER implemented\n", "In country TKM measure Economic measures was implemented on 2020-04-01 00:00:00\n", "In country TKM measure Curfews was NEVER implemented\n", "In country TKM measure Changes in prison-related policies was NEVER implemented\n", "In country TKM measure Public services closure was NEVER implemented\n", "In country TKM measure Military deployment was NEVER implemented\n", "In country TKM measure Full lockdown was NEVER implemented\n", "In country TKM measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country TKM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TKM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country TKM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TKM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TKM measure Testing policy was NEVER implemented\n", "In country TKM measure Psychological assistance and medical social work was NEVER implemented\n", "In country TKM measure Mass population testing was NEVER implemented\n", "In country TKM measure testing policy was NEVER implemented\n", "In country TKM measure limit public gatherings was NEVER implemented\n", "In country TKM measure strengthening the public health system was NEVER implemented\n", "In country TKM measure Humanitarian exemptions was NEVER implemented\n", "In country TKM measure Complete border closure was NEVER implemented\n", "In country TKM measure curfews was NEVER implemented\n", "In country TKM measure Obligatory medical tests not related to COVID-19 was implemented on UNKNOWN DATE\n", "In country TUV measure Health screenings in airports and border crossings was implemented on 2020-02-29 00:00:00\n", "In country TUV measure Introduction of isolation and quarantine policies was implemented on 2020-03-20 00:00:00\n", "In country TUV measure Awareness campaigns was NEVER implemented\n", "In country TUV measure Emergency administrative structures activated or established was NEVER implemented\n", "In country TUV measure Limit public gatherings was implemented on 2020-03-26 00:00:00\n", "In country TUV measure Border closure was implemented on 2020-04-10 00:00:00\n", "In country TUV measure Schools closure was NEVER implemented\n", "In country TUV measure Strengthening the public health system was implemented on 2020-04-08 00:00:00\n", "In country TUV measure Limit product imports/exports was NEVER implemented\n", "In country TUV measure Border checks was NEVER implemented\n", "In country TUV measure International flights suspension was NEVER implemented\n", "In country TUV measure Surveillance and monitoring was NEVER implemented\n", "In country TUV measure Other public health measures enforced was NEVER implemented\n", "In country TUV measure Domestic travel restrictions was NEVER implemented\n", "In country TUV measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country TUV measure General recommendations was NEVER implemented\n", "In country TUV measure Partial lockdown was NEVER implemented\n", "In country TUV measure Checkpoints within the country was NEVER implemented\n", "In country TUV measure Economic measures was implemented on 2020-04-02 00:00:00\n", "In country TUV measure Curfews was NEVER implemented\n", "In country TUV measure Changes in prison-related policies was NEVER implemented\n", "In country TUV measure Public services closure was NEVER implemented\n", "In country TUV measure Military deployment was NEVER implemented\n", "In country TUV measure Full lockdown was NEVER implemented\n", "In country TUV measure Visa restrictions was implemented on 2020-02-29 00:00:00\n", "In country TUV measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country TUV measure Additional health/documents requirements upon arrival was implemented on 2020-02-29 00:00:00\n", "In country TUV measure Requirement to wear protective gear in public was NEVER implemented\n", "In country TUV measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country TUV measure Testing policy was NEVER implemented\n", "In country TUV measure Psychological assistance and medical social work was NEVER implemented\n", "In country TUV measure Mass population testing was NEVER implemented\n", "In country TUV measure testing policy was NEVER implemented\n", "In country TUV measure limit public gatherings was NEVER implemented\n", "In country TUV measure strengthening the public health system was NEVER implemented\n", "In country TUV measure Humanitarian exemptions was NEVER implemented\n", "In country TUV measure Complete border closure was NEVER implemented\n", "In country TUV measure curfews was NEVER implemented\n", "In country TUV measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country UGA measure Health screenings in airports and border crossings was implemented on 2020-03-07 00:00:00\n", "In country UGA measure Introduction of isolation and quarantine policies was implemented on 2020-03-07 00:00:00\n", "In country UGA measure Awareness campaigns was NEVER implemented\n", "In country UGA measure Emergency administrative structures activated or established was implemented on 2020-04-01 00:00:00\n", "In country UGA measure Limit public gatherings was implemented on 2020-03-20 00:00:00\n", "In country UGA measure Border closure was implemented on 2020-03-22 00:00:00\n", "In country UGA measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country UGA measure Strengthening the public health system was NEVER implemented\n", "In country UGA measure Limit product imports/exports was NEVER implemented\n", "In country UGA measure Border checks was NEVER implemented\n", "In country UGA measure International flights suspension was implemented on 2020-03-23 00:00:00\n", "In country UGA measure Surveillance and monitoring was NEVER implemented\n", "In country UGA measure Other public health measures enforced was NEVER implemented\n", "In country UGA measure Domestic travel restrictions was implemented on 2020-03-25 00:00:00\n", "In country UGA measure State of emergency declared was NEVER implemented\n", "In country UGA measure General recommendations was implemented on 2020-03-12 00:00:00\n", "In country UGA measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country UGA measure Checkpoints within the country was NEVER implemented\n", "In country UGA measure Economic measures was implemented on 2020-04-03 00:00:00\n", "In country UGA measure Curfews was implemented on 2020-03-31 00:00:00\n", "In country UGA measure Changes in prison-related policies was NEVER implemented\n", "In country UGA measure Public services closure was implemented on 2020-04-01 00:00:00\n", "In country UGA measure Military deployment was NEVER implemented\n", "In country UGA measure Full lockdown was NEVER implemented\n", "In country UGA measure Visa restrictions was NEVER implemented\n", "In country UGA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country UGA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country UGA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country UGA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country UGA measure Testing policy was implemented on 2020-04-14 00:00:00\n", "In country UGA measure Psychological assistance and medical social work was NEVER implemented\n", "In country UGA measure Mass population testing was NEVER implemented\n", "In country UGA measure testing policy was NEVER implemented\n", "In country UGA measure limit public gatherings was NEVER implemented\n", "In country UGA measure strengthening the public health system was NEVER implemented\n", "In country UGA measure Humanitarian exemptions was NEVER implemented\n", "In country UGA measure Complete border closure was NEVER implemented\n", "In country UGA measure curfews was NEVER implemented\n", "In country UGA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country UKR measure Health screenings in airports and border crossings was implemented on 2020-03-11 00:00:00\n", "In country UKR measure Introduction of isolation and quarantine policies was implemented on 2020-03-11 00:00:00\n", "In country UKR measure Awareness campaigns was NEVER implemented\n", "In country UKR measure Emergency administrative structures activated or established was implemented on 2020-04-02 00:00:00\n", "In country UKR measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country UKR measure Border closure was implemented on 2020-03-13 00:00:00\n", "In country UKR measure Schools closure was implemented on 2020-03-09 00:00:00\n", "In country UKR measure Strengthening the public health system was implemented on 2020-02-24 00:00:00\n", "In country UKR measure Limit product imports/exports was implemented on 2020-03-03 00:00:00\n", "In country UKR measure Border checks was NEVER implemented\n", "In country UKR measure International flights suspension was implemented on 2020-03-14 00:00:00\n", "In country UKR measure Surveillance and monitoring was implemented on 2020-02-19 00:00:00\n", "In country UKR measure Other public health measures enforced was NEVER implemented\n", "In country UKR measure Domestic travel restrictions was NEVER implemented\n", "In country UKR measure State of emergency declared was NEVER implemented\n", "In country UKR measure General recommendations was implemented on 2020-03-05 00:00:00\n", "In country UKR measure Partial lockdown was implemented on 2020-03-15 00:00:00\n", "In country UKR measure Checkpoints within the country was NEVER implemented\n", "In country UKR measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country UKR measure Curfews was NEVER implemented\n", "In country UKR measure Changes in prison-related policies was NEVER implemented\n", "In country UKR measure Public services closure was NEVER implemented\n", "In country UKR measure Military deployment was NEVER implemented\n", "In country UKR measure Full lockdown was NEVER implemented\n", "In country UKR measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country UKR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country UKR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country UKR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country UKR measure Amendments to funeral and burial regulations was implemented on 2020-04-03 00:00:00\n", "In country UKR measure Testing policy was NEVER implemented\n", "In country UKR measure Psychological assistance and medical social work was NEVER implemented\n", "In country UKR measure Mass population testing was NEVER implemented\n", "In country UKR measure testing policy was NEVER implemented\n", "In country UKR measure limit public gatherings was NEVER implemented\n", "In country UKR measure strengthening the public health system was NEVER implemented\n", "In country UKR measure Humanitarian exemptions was NEVER implemented\n", "In country UKR measure Complete border closure was NEVER implemented\n", "In country UKR measure curfews was NEVER implemented\n", "In country UKR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ARE measure Health screenings in airports and border crossings was implemented on 2020-01-23 00:00:00\n", "In country ARE measure Introduction of isolation and quarantine policies was implemented on 2020-03-08 00:00:00\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country ARE measure Awareness campaigns was NEVER implemented\n", "In country ARE measure Emergency administrative structures activated or established was implemented on 2020-03-24 00:00:00\n", "In country ARE measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country ARE measure Border closure was NEVER implemented\n", "In country ARE measure Schools closure was implemented on 2020-03-08 00:00:00\n", "In country ARE measure Strengthening the public health system was NEVER implemented\n", "In country ARE measure Limit product imports/exports was NEVER implemented\n", "In country ARE measure Border checks was NEVER implemented\n", "In country ARE measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country ARE measure Surveillance and monitoring was NEVER implemented\n", "In country ARE measure Other public health measures enforced was implemented on 2020-04-05 00:00:00\n", "In country ARE measure Domestic travel restrictions was implemented on 2020-04-04 00:00:00\n", "In country ARE measure State of emergency declared was NEVER implemented\n", "In country ARE measure General recommendations was NEVER implemented\n", "In country ARE measure Partial lockdown was implemented on 2020-03-26 00:00:00\n", "In country ARE measure Checkpoints within the country was NEVER implemented\n", "In country ARE measure Economic measures was NEVER implemented\n", "In country ARE measure Curfews was NEVER implemented\n", "In country ARE measure Changes in prison-related policies was NEVER implemented\n", "In country ARE measure Public services closure was implemented on 2020-03-23 00:00:00\n", "In country ARE measure Military deployment was NEVER implemented\n", "In country ARE measure Full lockdown was NEVER implemented\n", "In country ARE measure Visa restrictions was implemented on 2020-01-02 00:00:00\n", "In country ARE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ARE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ARE measure Requirement to wear protective gear in public was implemented on 2020-03-29 00:00:00\n", "In country ARE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ARE measure Testing policy was NEVER implemented\n", "In country ARE measure Psychological assistance and medical social work was NEVER implemented\n", "In country ARE measure Mass population testing was NEVER implemented\n", "In country ARE measure testing policy was NEVER implemented\n", "In country ARE measure limit public gatherings was NEVER implemented\n", "In country ARE measure strengthening the public health system was NEVER implemented\n", "In country ARE measure Humanitarian exemptions was NEVER implemented\n", "In country ARE measure Complete border closure was NEVER implemented\n", "In country ARE measure curfews was NEVER implemented\n", "In country ARE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country GBR measure Health screenings in airports and border crossings was NEVER implemented\n", "In country GBR measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country GBR measure Awareness campaigns was NEVER implemented\n", "In country GBR measure Emergency administrative structures activated or established was NEVER implemented\n", "In country GBR measure Limit public gatherings was implemented on 2020-03-16 00:00:00\n", "In country GBR measure Border closure was NEVER implemented\n", "In country GBR measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country GBR measure Strengthening the public health system was implemented on 2020-03-11 00:00:00\n", "In country GBR measure Limit product imports/exports was NEVER implemented\n", "In country GBR measure Border checks was NEVER implemented\n", "In country GBR measure International flights suspension was NEVER implemented\n", "In country GBR measure Surveillance and monitoring was implemented on 2020-03-24 00:00:00\n", "In country GBR measure Other public health measures enforced was NEVER implemented\n", "In country GBR measure Domestic travel restrictions was NEVER implemented\n", "In country GBR measure State of emergency declared was NEVER implemented\n", "In country GBR measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country GBR measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country GBR measure Checkpoints within the country was NEVER implemented\n", "In country GBR measure Economic measures was implemented on 2020-03-13 00:00:00\n", "In country GBR measure Curfews was NEVER implemented\n", "In country GBR measure Changes in prison-related policies was NEVER implemented\n", "In country GBR measure Public services closure was implemented on 2020-03-21 00:00:00\n", "In country GBR measure Military deployment was NEVER implemented\n", "In country GBR measure Full lockdown was NEVER implemented\n", "In country GBR measure Visa restrictions was NEVER implemented\n", "In country GBR measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country GBR measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country GBR measure Requirement to wear protective gear in public was NEVER implemented\n", "In country GBR measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country GBR measure Testing policy was NEVER implemented\n", "In country GBR measure Psychological assistance and medical social work was NEVER implemented\n", "In country GBR measure Mass population testing was NEVER implemented\n", "In country GBR measure testing policy was NEVER implemented\n", "In country GBR measure limit public gatherings was NEVER implemented\n", "In country GBR measure strengthening the public health system was NEVER implemented\n", "In country GBR measure Humanitarian exemptions was NEVER implemented\n", "In country GBR measure Complete border closure was NEVER implemented\n", "In country GBR measure curfews was NEVER implemented\n", "In country GBR measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country USA measure Health screenings in airports and border crossings was implemented on 2020-03-14 00:00:00\n", "In country USA measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country USA measure Awareness campaigns was implemented on 2020-02-28 00:00:00\n", "In country USA measure Emergency administrative structures activated or established was implemented on 2020-01-21 00:00:00\n", "In country USA measure Limit public gatherings was implemented on 2020-03-11 00:00:00\n", "In country USA measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country USA measure Schools closure was implemented on 2020-03-13 00:00:00\n", "In country USA measure Strengthening the public health system was implemented on 2020-03-02 00:00:00\n", "In country USA measure Limit product imports/exports was NEVER implemented\n", "In country USA measure Border checks was NEVER implemented\n", "In country USA measure International flights suspension was NEVER implemented\n", "In country USA measure Surveillance and monitoring was NEVER implemented\n", "In country USA measure Other public health measures enforced was NEVER implemented\n", "In country USA measure Domestic travel restrictions was NEVER implemented\n", "In country USA measure State of emergency declared was implemented on 2020-03-13 00:00:00\n", "In country USA measure General recommendations was implemented on 2020-03-16 00:00:00\n", "In country USA measure Partial lockdown was NEVER implemented\n", "In country USA measure Checkpoints within the country was NEVER implemented\n", "In country USA measure Economic measures was implemented on 2020-03-15 00:00:00\n", "In country USA measure Curfews was NEVER implemented\n", "In country USA measure Changes in prison-related policies was NEVER implemented\n", "In country USA measure Public services closure was NEVER implemented\n", "In country USA measure Military deployment was implemented on 2020-03-22 00:00:00\n", "In country USA measure Full lockdown was NEVER implemented\n", "In country USA measure Visa restrictions was implemented on 2020-03-14 00:00:00\n", "In country USA measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country USA measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country USA measure Requirement to wear protective gear in public was NEVER implemented\n", "In country USA measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country USA measure Testing policy was implemented on 2020-03-08 00:00:00\n", "In country USA measure Psychological assistance and medical social work was NEVER implemented\n", "In country USA measure Mass population testing was NEVER implemented\n", "In country USA measure testing policy was NEVER implemented\n", "In country USA measure limit public gatherings was NEVER implemented\n", "In country USA measure strengthening the public health system was NEVER implemented\n", "In country USA measure Humanitarian exemptions was NEVER implemented\n", "In country USA measure Complete border closure was NEVER implemented\n", "In country USA measure curfews was NEVER implemented\n", "In country USA measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country URY measure Health screenings in airports and border crossings was implemented on 2020-03-13 00:00:00\n", "In country URY measure Introduction of isolation and quarantine policies was implemented on 2020-03-13 00:00:00\n", "In country URY measure Awareness campaigns was implemented on 2020-03-14 00:00:00\n", "In country URY measure Emergency administrative structures activated or established was NEVER implemented\n", "In country URY measure Limit public gatherings was NEVER implemented\n", "In country URY measure Border closure was implemented on 2020-03-16 00:00:00\n", "In country URY measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country URY measure Strengthening the public health system was NEVER implemented\n", "In country URY measure Limit product imports/exports was NEVER implemented\n", "In country URY measure Border checks was NEVER implemented\n", "In country URY measure International flights suspension was implemented on 2020-03-23 00:00:00\n", "In country URY measure Surveillance and monitoring was implemented on 2020-04-08 00:00:00\n", "In country URY measure Other public health measures enforced was NEVER implemented\n", "In country URY measure Domestic travel restrictions was implemented on 2020-03-27 00:00:00\n", "In country URY measure State of emergency declared was implemented on 2020-03-13 00:00:00\n", "In country URY measure General recommendations was NEVER implemented\n", "In country URY measure Partial lockdown was implemented on 2020-03-24 00:00:00\n", "In country URY measure Checkpoints within the country was NEVER implemented\n", "In country URY measure Economic measures was implemented on 2020-03-27 00:00:00\n", "In country URY measure Curfews was NEVER implemented\n", "In country URY measure Changes in prison-related policies was NEVER implemented\n", "In country URY measure Public services closure was NEVER implemented\n", "In country URY measure Military deployment was NEVER implemented\n", "In country URY measure Full lockdown was NEVER implemented\n", "In country URY measure Visa restrictions was NEVER implemented\n", "In country URY measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country URY measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country URY measure Requirement to wear protective gear in public was NEVER implemented\n", "In country URY measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country URY measure Testing policy was NEVER implemented\n", "In country URY measure Psychological assistance and medical social work was NEVER implemented\n", "In country URY measure Mass population testing was NEVER implemented\n", "In country URY measure testing policy was NEVER implemented\n", "In country URY measure limit public gatherings was NEVER implemented\n", "In country URY measure strengthening the public health system was NEVER implemented\n", "In country URY measure Humanitarian exemptions was NEVER implemented\n", "In country URY measure Complete border closure was NEVER implemented\n", "In country URY measure curfews was NEVER implemented\n", "In country URY measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country UZB measure Health screenings in airports and border crossings was NEVER implemented\n", "In country UZB measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country UZB measure Awareness campaigns was NEVER implemented\n", "In country UZB measure Emergency administrative structures activated or established was NEVER implemented\n", "In country UZB measure Limit public gatherings was implemented on UNKNOWN DATE\n", "In country UZB measure Border closure was NEVER implemented\n", "In country UZB measure Schools closure was NEVER implemented\n", "In country UZB measure Strengthening the public health system was NEVER implemented\n", "In country UZB measure Limit product imports/exports was NEVER implemented\n", "In country UZB measure Border checks was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country UZB measure International flights suspension was implemented on 2020-03-02 00:00:00\n", "In country UZB measure Surveillance and monitoring was NEVER implemented\n", "In country UZB measure Other public health measures enforced was NEVER implemented\n", "In country UZB measure Domestic travel restrictions was NEVER implemented\n", "In country UZB measure State of emergency declared was NEVER implemented\n", "In country UZB measure General recommendations was NEVER implemented\n", "In country UZB measure Partial lockdown was NEVER implemented\n", "In country UZB measure Checkpoints within the country was NEVER implemented\n", "In country UZB measure Economic measures was NEVER implemented\n", "In country UZB measure Curfews was NEVER implemented\n", "In country UZB measure Changes in prison-related policies was NEVER implemented\n", "In country UZB measure Public services closure was NEVER implemented\n", "In country UZB measure Military deployment was NEVER implemented\n", "In country UZB measure Full lockdown was NEVER implemented\n", "In country UZB measure Visa restrictions was NEVER implemented\n", "In country UZB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country UZB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country UZB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country UZB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country UZB measure Testing policy was NEVER implemented\n", "In country UZB measure Psychological assistance and medical social work was NEVER implemented\n", "In country UZB measure Mass population testing was NEVER implemented\n", "In country UZB measure testing policy was NEVER implemented\n", "In country UZB measure limit public gatherings was NEVER implemented\n", "In country UZB measure strengthening the public health system was NEVER implemented\n", "In country UZB measure Humanitarian exemptions was NEVER implemented\n", "In country UZB measure Complete border closure was NEVER implemented\n", "In country UZB measure curfews was NEVER implemented\n", "In country UZB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country VUT measure Health screenings in airports and border crossings was implemented on 2020-03-08 00:00:00\n", "In country VUT measure Introduction of isolation and quarantine policies was implemented on 2020-03-08 00:00:00\n", "In country VUT measure Awareness campaigns was implemented on 2020-03-26 00:00:00\n", "In country VUT measure Emergency administrative structures activated or established was implemented on 2020-04-02 00:00:00\n", "In country VUT measure Limit public gatherings was implemented on 2020-04-01 00:00:00\n", "In country VUT measure Border closure was implemented on 2020-03-20 00:00:00\n", "In country VUT measure Schools closure was implemented on 2020-04-03 00:00:00\n", "In country VUT measure Strengthening the public health system was implemented on 2020-04-03 00:00:00\n", "In country VUT measure Limit product imports/exports was NEVER implemented\n", "In country VUT measure Border checks was NEVER implemented\n", "In country VUT measure International flights suspension was implemented on 2020-04-07 00:00:00\n", "In country VUT measure Surveillance and monitoring was NEVER implemented\n", "In country VUT measure Other public health measures enforced was implemented on 2020-04-02 00:00:00\n", "In country VUT measure Domestic travel restrictions was implemented on 2020-03-31 00:00:00\n", "In country VUT measure State of emergency declared was implemented on 2020-03-26 00:00:00\n", "In country VUT measure General recommendations was NEVER implemented\n", "In country VUT measure Partial lockdown was implemented on 2020-03-22 00:00:00\n", "In country VUT measure Checkpoints within the country was NEVER implemented\n", "In country VUT measure Economic measures was implemented on 2020-04-01 00:00:00\n", "In country VUT measure Curfews was NEVER implemented\n", "In country VUT measure Changes in prison-related policies was NEVER implemented\n", "In country VUT measure Public services closure was implemented on 2020-04-07 00:00:00\n", "In country VUT measure Military deployment was NEVER implemented\n", "In country VUT measure Full lockdown was NEVER implemented\n", "In country VUT measure Visa restrictions was NEVER implemented\n", "In country VUT measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country VUT measure Additional health/documents requirements upon arrival was implemented on 2020-02-11 00:00:00\n", "In country VUT measure Requirement to wear protective gear in public was NEVER implemented\n", "In country VUT measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country VUT measure Testing policy was NEVER implemented\n", "In country VUT measure Psychological assistance and medical social work was NEVER implemented\n", "In country VUT measure Mass population testing was NEVER implemented\n", "In country VUT measure testing policy was NEVER implemented\n", "In country VUT measure limit public gatherings was NEVER implemented\n", "In country VUT measure strengthening the public health system was NEVER implemented\n", "In country VUT measure Humanitarian exemptions was NEVER implemented\n", "In country VUT measure Complete border closure was NEVER implemented\n", "In country VUT measure curfews was NEVER implemented\n", "In country VUT measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country VEN measure Health screenings in airports and border crossings was NEVER implemented\n", "In country VEN measure Introduction of isolation and quarantine policies was NEVER implemented\n", "In country VEN measure Awareness campaigns was implemented on 2020-03-17 00:00:00\n", "In country VEN measure Emergency administrative structures activated or established was implemented on 2020-03-31 00:00:00\n", "In country VEN measure Limit public gatherings was implemented on 2020-03-15 00:00:00\n", "In country VEN measure Border closure was NEVER implemented\n", "In country VEN measure Schools closure was implemented on 2020-03-15 00:00:00\n", "In country VEN measure Strengthening the public health system was implemented on 2020-03-17 00:00:00\n", "In country VEN measure Limit product imports/exports was NEVER implemented\n", "In country VEN measure Border checks was NEVER implemented\n", "In country VEN measure International flights suspension was implemented on 2020-03-15 00:00:00\n", "In country VEN measure Surveillance and monitoring was NEVER implemented\n", "In country VEN measure Other public health measures enforced was implemented on 2020-04-15 00:00:00\n", "In country VEN measure Domestic travel restrictions was implemented on 2020-03-17 00:00:00\n", "In country VEN measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country VEN measure General recommendations was NEVER implemented\n", "In country VEN measure Partial lockdown was implemented on 2020-03-16 00:00:00\n", "In country VEN measure Checkpoints within the country was implemented on 2020-03-16 00:00:00\n", "In country VEN measure Economic measures was implemented on 2020-03-17 00:00:00\n", "In country VEN measure Curfews was implemented on 2020-04-07 00:00:00\n", "In country VEN measure Changes in prison-related policies was NEVER implemented\n", "In country VEN measure Public services closure was implemented on 2020-03-15 00:00:00\n", "In country VEN measure Military deployment was NEVER implemented\n", "In country VEN measure Full lockdown was NEVER implemented\n", "In country VEN measure Visa restrictions was NEVER implemented\n", "In country VEN measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country VEN measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country VEN measure Requirement to wear protective gear in public was NEVER implemented\n", "In country VEN measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country VEN measure Testing policy was implemented on UNKNOWN DATE\n", "In country VEN measure Psychological assistance and medical social work was NEVER implemented\n", "In country VEN measure Mass population testing was NEVER implemented\n", "In country VEN measure testing policy was NEVER implemented\n", "In country VEN measure limit public gatherings was NEVER implemented\n", "In country VEN measure strengthening the public health system was NEVER implemented\n", "In country VEN measure Humanitarian exemptions was NEVER implemented\n", "In country VEN measure Complete border closure was NEVER implemented\n", "In country VEN measure curfews was NEVER implemented\n", "In country VEN measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country VNM measure Health screenings in airports and border crossings was implemented on 2020-03-15 00:00:00\n", "In country VNM measure Introduction of isolation and quarantine policies was implemented on 2020-03-15 00:00:00\n", "In country VNM measure Awareness campaigns was NEVER implemented\n", "In country VNM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country VNM measure Limit public gatherings was NEVER implemented\n", "In country VNM measure Border closure was NEVER implemented\n", "In country VNM measure Schools closure was NEVER implemented\n", "In country VNM measure Strengthening the public health system was NEVER implemented\n", "In country VNM measure Limit product imports/exports was NEVER implemented\n", "In country VNM measure Border checks was NEVER implemented\n", "In country VNM measure International flights suspension was NEVER implemented\n", "In country VNM measure Surveillance and monitoring was NEVER implemented\n", "In country VNM measure Other public health measures enforced was NEVER implemented\n", "In country VNM measure Domestic travel restrictions was NEVER implemented\n", "In country VNM measure State of emergency declared was NEVER implemented\n", "In country VNM measure General recommendations was NEVER implemented\n", "In country VNM measure Partial lockdown was NEVER implemented\n", "In country VNM measure Checkpoints within the country was NEVER implemented\n", "In country VNM measure Economic measures was NEVER implemented\n", "In country VNM measure Curfews was NEVER implemented\n", "In country VNM measure Changes in prison-related policies was NEVER implemented\n", "In country VNM measure Public services closure was NEVER implemented\n", "In country VNM measure Military deployment was NEVER implemented\n", "In country VNM measure Full lockdown was NEVER implemented\n", "In country VNM measure Visa restrictions was implemented on 2020-03-15 00:00:00\n", "In country VNM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country VNM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country VNM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country VNM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country VNM measure Testing policy was NEVER implemented\n", "In country VNM measure Psychological assistance and medical social work was NEVER implemented\n", "In country VNM measure Mass population testing was NEVER implemented\n", "In country VNM measure testing policy was NEVER implemented\n", "In country VNM measure limit public gatherings was NEVER implemented\n", "In country VNM measure strengthening the public health system was NEVER implemented\n", "In country VNM measure Humanitarian exemptions was NEVER implemented\n", "In country VNM measure Complete border closure was NEVER implemented\n", "In country VNM measure curfews was NEVER implemented\n", "In country VNM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country YEM measure Health screenings in airports and border crossings was implemented on UNKNOWN DATE\n", "In country YEM measure Introduction of isolation and quarantine policies was implemented on UNKNOWN DATE\n", "In country YEM measure Awareness campaigns was NEVER implemented\n", "In country YEM measure Emergency administrative structures activated or established was NEVER implemented\n", "In country YEM measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country YEM measure Border closure was implemented on 2020-03-14 00:00:00\n", "In country YEM measure Schools closure was implemented on 2020-03-14 00:00:00\n", "In country YEM measure Strengthening the public health system was NEVER implemented\n", "In country YEM measure Limit product imports/exports was NEVER implemented\n", "In country YEM measure Border checks was NEVER implemented\n", "In country YEM measure International flights suspension was implemented on 2020-03-18 00:00:00\n", "In country YEM measure Surveillance and monitoring was implemented on 2020-03-14 00:00:00\n", "In country YEM measure Other public health measures enforced was NEVER implemented\n", "In country YEM measure Domestic travel restrictions was implemented on 2020-03-14 00:00:00\n", "In country YEM measure State of emergency declared was NEVER implemented\n", "In country YEM measure General recommendations was NEVER implemented\n", "In country YEM measure Partial lockdown was NEVER implemented\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "In country YEM measure Checkpoints within the country was NEVER implemented\n", "In country YEM measure Economic measures was NEVER implemented\n", "In country YEM measure Curfews was implemented on 2020-03-26 00:00:00\n", "In country YEM measure Changes in prison-related policies was NEVER implemented\n", "In country YEM measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country YEM measure Military deployment was NEVER implemented\n", "In country YEM measure Full lockdown was NEVER implemented\n", "In country YEM measure Visa restrictions was implemented on UNKNOWN DATE\n", "In country YEM measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country YEM measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country YEM measure Requirement to wear protective gear in public was NEVER implemented\n", "In country YEM measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country YEM measure Testing policy was NEVER implemented\n", "In country YEM measure Psychological assistance and medical social work was NEVER implemented\n", "In country YEM measure Mass population testing was NEVER implemented\n", "In country YEM measure testing policy was NEVER implemented\n", "In country YEM measure limit public gatherings was NEVER implemented\n", "In country YEM measure strengthening the public health system was NEVER implemented\n", "In country YEM measure Humanitarian exemptions was NEVER implemented\n", "In country YEM measure Complete border closure was NEVER implemented\n", "In country YEM measure curfews was NEVER implemented\n", "In country YEM measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ZMB measure Health screenings in airports and border crossings was implemented on 2020-02-24 00:00:00\n", "In country ZMB measure Introduction of isolation and quarantine policies was implemented on 2020-03-17 00:00:00\n", "In country ZMB measure Awareness campaigns was NEVER implemented\n", "In country ZMB measure Emergency administrative structures activated or established was implemented on 2020-03-26 00:00:00\n", "In country ZMB measure Limit public gatherings was implemented on 2020-03-17 00:00:00\n", "In country ZMB measure Border closure was NEVER implemented\n", "In country ZMB measure Schools closure was implemented on 2020-03-20 00:00:00\n", "In country ZMB measure Strengthening the public health system was NEVER implemented\n", "In country ZMB measure Limit product imports/exports was NEVER implemented\n", "In country ZMB measure Border checks was NEVER implemented\n", "In country ZMB measure International flights suspension was implemented on 2020-03-17 00:00:00\n", "In country ZMB measure Surveillance and monitoring was NEVER implemented\n", "In country ZMB measure Other public health measures enforced was NEVER implemented\n", "In country ZMB measure Domestic travel restrictions was implemented on 2020-03-26 00:00:00\n", "In country ZMB measure State of emergency declared was NEVER implemented\n", "In country ZMB measure General recommendations was implemented on 2020-03-17 00:00:00\n", "In country ZMB measure Partial lockdown was NEVER implemented\n", "In country ZMB measure Checkpoints within the country was NEVER implemented\n", "In country ZMB measure Economic measures was NEVER implemented\n", "In country ZMB measure Curfews was NEVER implemented\n", "In country ZMB measure Changes in prison-related policies was NEVER implemented\n", "In country ZMB measure Public services closure was implemented on 2020-03-18 00:00:00\n", "In country ZMB measure Military deployment was NEVER implemented\n", "In country ZMB measure Full lockdown was NEVER implemented\n", "In country ZMB measure Visa restrictions was NEVER implemented\n", "In country ZMB measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ZMB measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ZMB measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ZMB measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ZMB measure Testing policy was NEVER implemented\n", "In country ZMB measure Psychological assistance and medical social work was NEVER implemented\n", "In country ZMB measure Mass population testing was NEVER implemented\n", "In country ZMB measure testing policy was NEVER implemented\n", "In country ZMB measure limit public gatherings was NEVER implemented\n", "In country ZMB measure strengthening the public health system was NEVER implemented\n", "In country ZMB measure Humanitarian exemptions was NEVER implemented\n", "In country ZMB measure Complete border closure was NEVER implemented\n", "In country ZMB measure curfews was NEVER implemented\n", "In country ZMB measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "In country ZWE measure Health screenings in airports and border crossings was implemented on 2020-03-12 00:00:00\n", "In country ZWE measure Introduction of isolation and quarantine policies was implemented on 2020-03-24 00:00:00\n", "In country ZWE measure Awareness campaigns was implemented on 2020-03-15 00:00:00\n", "In country ZWE measure Emergency administrative structures activated or established was implemented on 2020-04-14 00:00:00\n", "In country ZWE measure Limit public gatherings was implemented on 2020-03-24 00:00:00\n", "In country ZWE measure Border closure was implemented on 2020-03-24 00:00:00\n", "In country ZWE measure Schools closure was implemented on 2020-03-24 00:00:00\n", "In country ZWE measure Strengthening the public health system was NEVER implemented\n", "In country ZWE measure Limit product imports/exports was NEVER implemented\n", "In country ZWE measure Border checks was NEVER implemented\n", "In country ZWE measure International flights suspension was NEVER implemented\n", "In country ZWE measure Surveillance and monitoring was NEVER implemented\n", "In country ZWE measure Other public health measures enforced was implemented on 2020-04-03 00:00:00\n", "In country ZWE measure Domestic travel restrictions was NEVER implemented\n", "In country ZWE measure State of emergency declared was implemented on 2020-03-17 00:00:00\n", "In country ZWE measure General recommendations was NEVER implemented\n", "In country ZWE measure Partial lockdown was implemented on 2020-03-30 00:00:00\n", "In country ZWE measure Checkpoints within the country was NEVER implemented\n", "In country ZWE measure Economic measures was NEVER implemented\n", "In country ZWE measure Curfews was NEVER implemented\n", "In country ZWE measure Changes in prison-related policies was NEVER implemented\n", "In country ZWE measure Public services closure was implemented on 2020-03-24 00:00:00\n", "In country ZWE measure Military deployment was NEVER implemented\n", "In country ZWE measure Full lockdown was NEVER implemented\n", "In country ZWE measure Visa restrictions was NEVER implemented\n", "In country ZWE measure Lockdown of refugee/idp camps or other minorities was NEVER implemented\n", "In country ZWE measure Additional health/documents requirements upon arrival was NEVER implemented\n", "In country ZWE measure Requirement to wear protective gear in public was NEVER implemented\n", "In country ZWE measure Amendments to funeral and burial regulations was NEVER implemented\n", "In country ZWE measure Testing policy was implemented on 2020-04-15 00:00:00\n", "In country ZWE measure Psychological assistance and medical social work was NEVER implemented\n", "In country ZWE measure Mass population testing was NEVER implemented\n", "In country ZWE measure testing policy was NEVER implemented\n", "In country ZWE measure limit public gatherings was NEVER implemented\n", "In country ZWE measure strengthening the public health system was NEVER implemented\n", "In country ZWE measure Humanitarian exemptions was NEVER implemented\n", "In country ZWE measure Complete border closure was NEVER implemented\n", "In country ZWE measure curfews was NEVER implemented\n", "In country ZWE measure Obligatory medical tests not related to COVID-19 was NEVER implemented\n", "Total NaT datetimes: 78\n" ] } ], "source": [ "countries_masks = {}\n", "startingdate = HDE_df['date_implemented'].min()\n", "endingdate = HDE_df['date_implemented'].max()\n", "\n", "unknowns = 0\n", "for c in countries:\n", " current_mask = np.zeros((len(measures),(endingdate-startingdate).days))\n", " \n", " for im,m in enumerate(measures):\n", " ds = HDE_df.loc[(HDE_df['iso']==c) & (HDE_df['measure']==m), 'date_implemented' ]\n", " if(ds.empty):\n", " print('In country {0} measure {1} was NEVER implemented'.format(c,m))\n", " else:\n", " ds = ds[pd.notna(ds)]\n", " if(ds.empty):\n", " unknowns += 1\n", " current_mask[im,:] = np.nan\n", " print('In country {0} measure {1} was implemented on UNKNOWN DATE'.format(c,m))\n", " else:\n", " d = ds.iloc[0]\n", " indexdate = (d - startingdate).days\n", " current_mask[im,indexdate:] = 1\n", " print('In country {0} measure {1} was implemented on {2}'.format(c,m,d)) \n", " countries_masks[c] = current_mask\n", " \n", "print('Total NaT datetimes: {0}'.format(unknowns)) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can visually appreciate the different treatment of each country. We assume that all the activated measures, once activated are staying active; this reasonable in the limited time frame we considered. Notice that a yellow color denotes an active policy (1), a blue colour denotes an inactive policy (0), a red color denotes a policy activated at an undefined data (np.nan)." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Text(0.5, 1.05, 'Sweden')" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "current_cmap = matplotlib.cm.get_cmap()\n", "current_cmap.set_bad(color='red')\n", "plt.matshow(countries_masks['ITA'])\n", "plt.title('Italy')\n", "plt.matshow(countries_masks['USA'])\n", "plt.title('United States')\n", "plt.matshow(countries_masks['NOR'])\n", "plt.title('Norway')\n", "plt.matshow(countries_masks['SWE'])\n", "plt.title('Sweden')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Inevitably, there are significant differences among states. We may quantify this differences." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "country_similarity = np.zeros((len(countries),len(countries)))\n", "\n", "for i,c in enumerate(countries):\n", " for j,d in enumerate(countries):\n", " country_similarity[i,j] = np.sum(countries_masks[c] != countries_masks[d]) " ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "plt.matshow(country_similarity)\n", "plt.colorbar()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This matrix reports the *Hamming distances* between treatments of different countries." ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Min distance: 88.0\n", "Max distance: 1941.0\n", "[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\n", "Countries with treatments at Hamming distance 88\n", "TTO - STP\n", "Countries with treatments at Hamming distance 98\n", "STP - KNA\n", "Countries with treatments at Hamming distance 101\n", "VNM - BGD\n", "Countries with treatments at Hamming distance 106\n", "VNM - TTO\n", "Countries with treatments at Hamming distance 113\n", "TTO - BGD\n", "Countries with treatments at Hamming distance 126\n", "VNM - JAM\n", "Countries with treatments at Hamming distance 135\n", "TUV - KIR\n", "Countries with treatments at Hamming distance 136\n", "VNM - BDI\n", "Countries with treatments at Hamming distance 141\n", "BDI - BGD\n", "Countries with treatments at Hamming distance 149\n", "TUN - JAM\n", "Countries with treatments at Hamming distance 164\n", "ZWE - LSO\n", "Countries with treatments at Hamming distance 167\n", "ZMB - TZA\n", "Countries with treatments at Hamming distance 170\n", "VNM - STP\n", "Countries with treatments at Hamming distance 175\n", "STP - BGD\n", "Countries with treatments at Hamming distance 176\n", "STP - BTN\n", "Countries with treatments at Hamming distance 183\n", "MAR - LIE\n", "Countries with treatments at Hamming distance 185\n", "ZMB - NGA\n", "Countries with treatments at Hamming distance 186\n", "MKD - CRI\n", "Countries with treatments at Hamming distance 186\n", "TTO - KNA\n", "Countries with treatments at Hamming distance 188\n", "SOM - BGD\n", "Countries with treatments at Hamming distance 189\n", "URY - COD\n", "Countries with treatments at Hamming distance 200\n", "KNA - BTN\n", "Countries with treatments at Hamming distance 201\n", "VNM - KIR\n", "Countries with treatments at Hamming distance 203\n", "MEX - LIE\n", "Countries with treatments at Hamming distance 203\n", "KNA - NIC\n", "Countries with treatments at Hamming distance 203\n", "VNM - TUN\n", "Countries with treatments at Hamming distance 205\n", "ZMB - UGA\n", "Countries with treatments at Hamming distance 206\n", "GIN - COG\n", "Countries with treatments at Hamming distance 206\n", "TTO - BTN\n", "Countries with treatments at Hamming distance 208\n", "TUN - BGD\n", "Countries with treatments at Hamming distance 209\n", "CRI - COL\n", "Countries with treatments at Hamming distance 209\n", "LSO - SLV\n", "Countries with treatments at Hamming distance 209\n", "UGA - WSM\n", "Countries with treatments at Hamming distance 210\n", "LSO - COD\n", "Countries with treatments at Hamming distance 214\n", "GNB - COD\n", "Countries with treatments at Hamming distance 215\n", "JAM - BGD\n", "Countries with treatments at Hamming distance 217\n", "NER - GIN\n", "Countries with treatments at Hamming distance 220\n", "TTO - JAM\n", "Countries with treatments at Hamming distance 222\n", "ZMB - NLD\n", "Countries with treatments at Hamming distance 223\n", "KIR - JAM\n", "Countries with treatments at Hamming distance 225\n", "VNM - NRU\n", "Countries with treatments at Hamming distance 226\n", "TTO - KAZ\n", "Countries with treatments at Hamming distance 226\n", "URY - ARM\n", "Countries with treatments at Hamming distance 228\n", "GIN - COD\n", "Countries with treatments at Hamming distance 228\n", "TZA - NGA\n", "Countries with treatments at Hamming distance 228\n", "TUV - JAM\n", "Countries with treatments at Hamming distance 228\n", "VNM - HKG\n", "Countries with treatments at Hamming distance 229\n", "NGA - COD\n", "Countries with treatments at Hamming distance 229\n", "TUV - TUN\n", "Countries with treatments at Hamming distance 231\n", "PRY - CYP\n", "Countries with treatments at Hamming distance 232\n", "MAR - CRI\n", "Countries with treatments at Hamming distance 233\n", "STP - PRK\n", "Countries with treatments at Hamming distance 233\n", "SOM - BDI\n", "Countries with treatments at Hamming distance 234\n", "TUN - KIR\n", "Countries with treatments at Hamming distance 235\n", "TON - GEO\n", "Countries with treatments at Hamming distance 235\n", "UGA - DOM\n", "Countries with treatments at Hamming distance 236\n", "GNB - GIN\n", "Countries with treatments at Hamming distance 237\n", "STP - NIC\n", "Countries with treatments at Hamming distance 237\n", "SSD - GIN\n", "Countries with treatments at Hamming distance 238\n", "HTI - SLV\n", "Countries with treatments at Hamming distance 238\n", "STP - DJI\n", "Countries with treatments at Hamming distance 239\n", "ZWE - LBR\n", "Countries with treatments at Hamming distance 240\n", "NIC - ERI\n", "Countries with treatments at Hamming distance 241\n", "UGA - COD\n", "Countries with treatments at Hamming distance 242\n", "COD - COG\n", "Countries with treatments at Hamming distance 242\n", "WSM - NZL\n", "Countries with treatments at Hamming distance 242\n", "TTO - BDI\n", "Countries with treatments at Hamming distance 242\n", "TTO - TLS\n", "Countries with treatments at Hamming distance 242\n", "VNM - TUV\n", "Countries with treatments at Hamming distance 244\n", "MWI - HKG\n", "Countries with treatments at Hamming distance 244\n", "NRU - KIR\n", "Countries with treatments at Hamming distance 244\n", "NZL - GNQ\n", "Countries with treatments at Hamming distance 245\n", "MEX - KAZ\n", "Countries with treatments at Hamming distance 245\n", "NGA - MWI\n", "Countries with treatments at Hamming distance 245\n", "SAU - QAT\n", "Countries with treatments at Hamming distance 245\n", "UGA - MDG\n", "Countries with treatments at Hamming distance 246\n", "UGA - NGA\n", "Countries with treatments at Hamming distance 247\n", "GNQ - CRI\n", "Countries with treatments at Hamming distance 247\n", "NLD - GRD\n", "Countries with treatments at Hamming distance 247\n", "NGA - BDI\n", "Countries with treatments at Hamming distance 247\n", "ZMB - LBR\n", "Countries with treatments at Hamming distance 249\n", "NER - MLI\n", "Countries with treatments at Hamming distance 249\n", "PAN - OMN\n", "Countries with treatments at Hamming distance 249\n", "SWE - KNA\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "mask = np.ones(country_similarity.shape, dtype=bool)\n", "mask = np.triu(mask,k=0)\n", "masked_country_similarity = np.ma.masked_array(country_similarity,mask)\n", "print('Min distance: {0}'.format(np.min(masked_country_similarity)))\n", "print('Max distance: {0}'.format(np.max(masked_country_similarity)))\n", "\n", "plt.hist(masked_country_similarity)\n", "hist = []\n", "for i in range(int(np.max(masked_country_similarity))):\n", " hist.append(np.sum(masked_country_similarity==i))\n", "print(hist[0:50])\n", "\n", "for i in range(80,250):\n", " locs = np.ma.where(masked_country_similarity==i)\n", " for l in range(len(locs[0])):\n", " print('Countries with treatments at Hamming distance {0}'.format(i))\n", " print('{0} - {1}'.format(countries[locs[0][l]], countries[locs[1][l]]))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A more detailed analysis reveals that distances vary from 88 to 1941, with most of pair of countries having policies with Hamming distances between 250 and 1000 (see histogram). Very few countries have distances lower than 250." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAt0AAAECCAYAAAAit2uVAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAARsUlEQVR4nO3df6yld10n8PfHmemUFk3b5UfGtivVNAhLZGqus13ZbLCAVCS2JBppXG0UM5pIBIOuLf6hJGuiWaWuUUlGWzubsCApIA0Btak1SLIUBhhLywCtBWHo2EGxApId2vLxj/NMvA739t7ee7/39py+XsnJOc/3PM99Psmn3zPvPvd7n1PdHQAAYJxv2ukCAABg0QndAAAwmNANAACDCd0AADCY0A0AAIMJ3QAAMNi2h+6qurKqPllV91XVddt9fjauqi6uqjuq6lhV3VNVr5nGL6iq26rq3un5/J2ulbVV1a6q+mhVvXvavqSq7pz6+CdVddZO18jaquq8qrqlqj4xzc3/Yk7On6r6helz9e6qektVnW1OzoequqmqTlbV3cvGVpyDNfO7Uwa6q6q+e+cqZ7lV+vi/ps/Wu6rqnVV13rL3rp/6+Mmqeul6zrGtobuqdiX5/SQ/kOS5Sa6pquduZw1syiNJXtfdz0lyeZKfm/p3XZLbu/vSJLdP2zzxvSbJsWXbv5nkhqmP/5TkVTtSFY/X/07yZ939nUmen1lPzck5UlUXJvn5JEvd/bwku5K8MubkvLg5yZVnjK02B38gyaXT42CSN21Tjazt5nxjH29L8rzu/q4kn0pyfZJM2eeVSf7TdMwfTBn3MW33le4DSe7r7vu7+2tJ3prkqm2ugQ3q7hPd/ZHp9Zcz+8f9wsx6eHja7XCSq3emQtarqi5K8oNJ/mjariRXJLll2kUf50BVfUuS/5bkxiTp7q9190MxJ+fR7iRPqardSc5JciLm5Fzo7vcl+eIZw6vNwauS/J+e+UCS86pq3/ZUymNZqY/d/Rfd/ci0+YEkF02vr0ry1u4+1d2fTnJfZhn3MW136L4wyeeWbR+fxpgzVfWsJJcluTPJM7v7RDIL5kmesXOVsU6/k+R/JPn6tP0fkjy07MPF3JwP357kC0n+eFoq9EdVdW7MybnS3Z9P8ltJPptZ2P7nJB+OOTnPVpuDctD8+qkk751eb6iP2x26a4Ux30M/Z6rqqUnenuS13f2lna6Hx6eqXp7kZHd/ePnwCruam098u5N8d5I3dfdlSf4llpLMnWm971VJLknyrUnOzWwZwpnMyfnns3YOVdWvZLbE9s2nh1bYbc0+bnfoPp7k4mXbFyV5YJtrYBOqak9mgfvN3f2OafjB078em55P7lR9rMsLkvxQVX0msyVeV2R25fu86Vfbibk5L44nOd7dd07bt2QWws3J+fLiJJ/u7i9098NJ3pHke2NOzrPV5qAcNGeq6tokL0/yY919OlhvqI/bHbo/lOTS6S+yz8psEfqt21wDGzSt+70xybHufuOyt25Ncu30+tok79ru2li/7r6+uy/q7mdlNgf/srt/LMkdSX542k0f50B3/32Sz1XVs6ehFyX5eMzJefPZJJdX1TnT5+zpPpqT82u1OXhrkp+Y7mJyeZJ/Pr0MhSeeqroyyS8n+aHu/uqyt25N8sqq2ltVl2T2h7EfXPPn/Vto3x5V9bLMrqrtSnJTd//6thbAhlXVf03y10k+ln9bC/z6zNZ1vy3Jf8zsH48f6e4z/6iEJ6CqemGSX+zul1fVt2d25fuCJB9N8t+7+9RO1sfaqmp/Zn8Qe1aS+5P8ZGYXVMzJOVJVb0jyo5n9CvujSX46szWi5uQTXFW9JckLkzwtyYNJfjXJn2aFOTj9T9XvZXbHi68m+cnuPrITdfPvrdLH65PsTfKP024f6O6fnfb/lczWeT+S2XLb9575M7/hHNsdugEA4MnGN1ICAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYDsWuqvq4E6dm62jj4tDLxeDPi4OvVwM+rg4NtvLnbzS7T/CxaCPi0MvF4M+Lg69XAz6uDh2LnRX1ZVV9cmquq+qrtvMzwIAgEW14S/HqapdST6V5CWZfQf9h5Jc090fX+2Ys2pvn51zkyQP51T2ZO+Gzs0Thz4uDr1cDPq4OPRyMejj4jjdy/+ff8nX+lQ93uN3b+LcB5Lc1933J0lVvTXJVUlWDd1n59z853rRJk4JAAA7586+fUPHbWZ5yYVJPrds+/g0BgAALLOZK90rXVb/hrUq0196HkySs3POJk4HAADzaTNXuo8nuXjZ9kVJHjhzp+4+1N1L3b1kTRMAAE9GmwndH0pyaVVdUlVnJXllklu3piwAAFgcG15e0t2PVNWrk/x5kl1Jburue7asMgAAWBCbWdOd7n5PkvdsUS0AALCQdvIbKQEA4ElB6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMF2b+bgqvpMki8neTTJI929tBVFAQDAItlU6J58X3f/wxb8HAAAWEiWlwAAwGCbDd2d5C+q6sNVdXArCgIAgEWz2eUlL+juB6rqGUluq6pPdPf7lu8whfGDSXJ2ztnk6QAAYP5s6kp3dz8wPZ9M8s4kB1bY51B3L3X30p7s3czpAABgLm04dFfVuVX1zadfJ/n+JHdvVWEAALAoNrO85JlJ3llVp3/O/+3uP9uSqgAAYIFsOHR39/1Jnr+FtQAAwEJyy0AAABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhszdBdVTdV1cmqunvZ2AVVdVtV3Ts9nz+2TAAAmF/rudJ9c5Irzxi7Lsnt3X1pktunbQAAYAVrhu7ufl+SL54xfFWSw9Prw0mu3uK6AABgYWx0Tfczu/tEkkzPz9i6kgAAYLHsHn2CqjqY5GCSnJ1zRp8OAACecDZ6pfvBqtqXJNPzydV27O5D3b3U3Ut7sneDpwMAgPm10dB9a5Jrp9fXJnnX1pQDAACLZz23DHxLkv+X5NlVdbyqXpXkN5K8pKruTfKSaRsAAFjBmmu6u/uaVd560RbXAgAAC8k3UgIAwGBCNwAADCZ0AwDAYEI3AAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYEI3AAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYEI3AAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADLZm6K6qm6rqZFXdvWzs16rq81V1dHq8bGyZAAAwv9ZzpfvmJFeuMH5Dd++fHu/Z2rIAAGBxrBm6u/t9Sb64DbUAAMBC2sya7ldX1V3T8pPzt6wiAABYMBsN3W9K8h1J9ic5keS3V9uxqg5W1ZGqOvJwTm3wdAAAML82FLq7+8HufrS7v57kD5MceIx9D3X3Uncv7cnejdYJAABza0Ohu6r2Ldt8RZK7V9sXAACe7HavtUNVvSXJC5M8raqOJ/nVJC+sqv1JOslnkvzMwBoBAGCurRm6u/uaFYZvHFALAAAsJN9ICQAAgwndAAAwmNANAACDCd0AADCY0A0AAIMJ3QAAMJjQDQAAgwndAAAwmNANAACDCd0AADCY0A0AAIMJ3QAAMJjQDQAAgwndAAAwmNANAACDCd0AADCY0A0AAIMJ3QAAMJjQDQAAgwndAAAw2Jqhu6ourqo7qupYVd1TVa+Zxi+oqtuq6t7p+fzx5QIAwPxZz5XuR5K8rrufk+TyJD9XVc9Ncl2S27v70iS3T9sAAMAZ1gzd3X2iuz8yvf5ykmNJLkxyVZLD026Hk1w9qkgAAJhnj2tNd1U9K8llSe5M8szuPpHMgnmSZ6xyzMGqOlJVRx7Oqc1VCwAAc2jdobuqnprk7Ule291fWu9x3X2ou5e6e2lP9m6kRgAAmGvrCt1VtSezwP3m7n7HNPxgVe2b3t+X5OSYEgEAYL6t5+4lleTGJMe6+43L3ro1ybXT62uTvGvrywMAgPm3ex37vCDJjyf5WFUdncZen+Q3krytql6V5LNJfmRMiQAAMN/WDN3d/f4ktcrbL9racgAAYPH4RkoAABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMF273QBAGyvP3/g6E6XADC3Drz0qxs6zpVuAAAYTOgGAIDBhG4AABhM6AYAgMHWDN1VdXFV3VFVx6rqnqp6zTT+a1X1+ao6Oj1eNr5cAACYP+u5e8kjSV7X3R+pqm9O8uGqum1674bu/q1x5QGw1V76rft3ugSAufWp/scNHbdm6O7uE0lOTK+/XFXHkly4obMBAMCT0ONa011Vz0pyWZI7p6FXV9VdVXVTVZ2/xbUBAMBCWHforqqnJnl7ktd295eSvCnJdyTZn9mV8N9e5biDVXWkqo48nFNbUDIAAMyXdYXuqtqTWeB+c3e/I0m6+8HufrS7v57kD5McWOnY7j7U3UvdvbQne7eqbgAAmBvruXtJJbkxybHufuOy8X3LdntFkru3vjwAAJh/67l7yQuS/HiSj1XV0Wns9Umuqar9STrJZ5L8zJAKAQBgzq3n7iXvT1IrvPWerS8HAAAWj2+kBACAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYbM3QXVVnV9UHq+pvquqeqnrDNH5JVd1ZVfdW1Z9U1VnjywUAgPmznivdp5Jc0d3PT7I/yZVVdXmS30xyQ3dfmuSfkrxqXJkAADC/1gzdPfOVaXPP9OgkVyS5ZRo/nOTqIRUCAMCcW9ea7qraVVVHk5xMcluSv03yUHc/Mu1yPMmFY0oEAID5tq7Q3d2Pdvf+JBclOZDkOSvtttKxVXWwqo5U1ZGHc2rjlQIAwJx6XHcv6e6HkvxVksuTnFdVu6e3LkrywCrHHOrupe5e2pO9m6kVAADm0nruXvL0qjpvev2UJC9OcizJHUl+eNrt2iTvGlUkAADMs91r75J9SQ5X1a7MQvrbuvvdVfXxJG+tqv+Z5KNJbhxYJwAAzK01Q3d335XkshXG789sfTcAAPAYfCMlAAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYEI3AAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYEI3AAAMJnQDAMBgQjcAAAwmdAMAwGBCNwAADCZ0AwDAYEI3AAAMtmborqqzq+qDVfU3VXVPVb1hGr+5qj5dVUenx/7x5QIAwPzZvY59TiW5oru/UlV7kry/qt47vfdL3X3LuPIAAGD+rRm6u7uTfGXa3DM9emRRAACwSNa1pruqdlXV0SQnk9zW3XdOb/16Vd1VVTdU1d5hVQIAwBxbV+ju7ke7e3+Si5IcqKrnJbk+yXcm+Z4kFyT55ZWOraqDVXWkqo48nFNbVDYAAMyPx3X3ku5+KMlfJbmyu0/0zKkkf5zkwCrHHOrupe5e2hMXwwEAePJZz91Lnl5V502vn5LkxUk+UVX7prFKcnWSu0cWCgAA82o9dy/Zl+RwVe3KLKS/rbvfXVV/WVVPT1JJjib52YF1AgDA3FrP3UvuSnLZCuNXDKkIAAAWjG+kBACAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBhG4AABhM6AYAgMGEbgAAGEzoBgCAwYRuAAAYTOgGAIDBqru372RVX0jyd9Pm05L8w7adnFH0cXHo5WLQx8Whl4tBHxfH6V5+W3c//fEevK2h+9+duOpIdy/tyMnZMvq4OPRyMejj4tDLxaCPi2OzvbS8BAAABhO6AQBgsJ0M3Yd28NxsHX1cHHq5GPRxcejlYtDHxbGpXu7Ymm4AAHiysLwEAAAGE7oBAGAwoRsAAAYTugEAYDChGwAABvtXPF47U/IwYNcAAAAASUVORK5CYII=\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "plt.matshow(countries_masks['TTO'])\n", "plt.matshow(countries_masks['STP'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The smallest difference (88) is recorded between Sao Tome and Principe (STP) and Trinidad and Tobago, which, apparently, enacted only one policy each." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Aligning the data\n", "\n", "The treatments among the countries are now aligned with respect to an absolute time. However, it may make more sense to align them in a relative fashion, with respect to the start of the spread of the disease. This is a non trivial challenge, as we need a criterion to perform this alignment (recording of the first case? recording on the n-th case? percentage of population affected?)\n", "\n", "- How to align data?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Chosing treatments of reference\n", "\n", "Ideally, in a *time-varying analysis* we would have two sets of individuals enacting two policies $\\pi_0$ and $\\pi_1$, so that we could compute the *average treatment effect* as a difference $E\\left[ Y^{\\pi_0} \\right] - E\\left[ Y^{\\pi_1} \\right]$. The limited amount of samples and vast number of treatments makes it hard to conduct such analysis.\n", "\n", "- Can we group together certain measures and reduce the number of alternatives?\n", "- Can we evince some natural experiments, by matching similar countries that may be seen as already adjusted for confounder?" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.7" } }, "nbformat": 4, "nbformat_minor": 4 }