Starting point

This notebook is a lightweight starting point for a new data project.


In [2]:
""" Import the necessities. """
import pandas as pd
import numpy as np

""" For basic visualization, matplotlib and seaborn. """
import matplotlib.pyplot as plt
from matplotlib.ticker import FuncFormatter
%matplotlib inline
# Change the plot size (in inches)
fig_size = plt.rcParams["figure.figsize"]
print(fig_size)
plt.rcParams["figure.figsize"] = [10.0, 12.0]
print(plt.rcParams["figure.figsize"])

import seaborn as sns
sns.set_style("whitegrid")


[6.0, 4.0]
[10.0, 12.0]

In [ ]: