Skip to content

Instantly share code, notes, and snippets.

@matteo-peltarion
Created March 23, 2020 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matteo-peltarion/479c39d06faee6ffa547bdef321d9114 to your computer and use it in GitHub Desktop.
Save matteo-peltarion/479c39d06faee6ffa547bdef321d9114 to your computer and use it in GitHub Desktop.
COVID-19 analysis code 01 - Imports
# Basic imports for path
import os, sys, glob
# Data loading and
import pandas as pd
import numpy as np
# Plotting
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
import matplotlib.dates as mdates
# Setup data dir
DATA_DIR = "../csse_covid_19_data/csse_covid_19_daily_reports"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment