In [1]:
import numpy as np
from datascience import *
# These lines set up graphing capabilities.
import matplotlib
%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('fivethirtyeight')
import warnings
warnings.simplefilter('ignore', FutureWarning)
from ipywidgets import interact, interactive, fixed, interact_manual
import ipywidgets as widgets
In [4]:
table1 = Table.read_table("map_data_CRC.csv")
table1
Out[4]:
In [17]:
table2 = Table.read_table("num_data_CRC.csv")
table2.where("group", "Seasonally Adjusted").plot("month", "num")
In [ ]:
table3 = Table.read_table("vol_data_CRC.csv")
table3.where("group", "Seasonally Adjusted").where("month", np.arange(84, 132)).plot(0, 1)
In [20]:
table4 = Table.read_table("yoy_data_all_CRC.csv")
table4
Out[20]:
In [ ]: