-
-
Save mjam03/761d017e821b62c3adf2d4cf1b7477d3 to your computer and use it in GitHub Desktop.
import_example_corona
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
import datetime as dt | |
import io | |
import matplotlib.dates as mdates | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
import requests | |
import seaborn as sns | |
import sys | |
from urllib.request import Request, urlopen | |
import warnings | |
import zipfile | |
# autocomplete not working in my jupyter instances | |
%config Completer.use_jedi = False | |
# some pandas and sns preferences | |
sns.set() | |
warnings.filterwarnings('ignore') | |
pd.set_option('display.max_rows', 500) | |
pd.set_option('display.max_columns', 500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment