If you are using a virtual environment, follow the steps below to setup it for the Jupyter Notebook.
$ source <envname>/bin/activate
"""Checking if `people_fully_vaccinated` metric (from Our World in Data vaccination dataset) follows Benford's Law. | |
Reference: https://twitter.com/lucasrodesg/status/1425770193993744386?s=20 | |
""" | |
import os | |
from datetime import datetime, timedelta | |
import pandas as pd | |
import numpy as np | |
from plotly.offline import plot |