This notebook tests whether your environment is set up properly for DS100 work.

All the cells in this notebook should run without error, producing a plot at the end.


In [ ]:
import math
import numpy as np
import matplotlib
%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('fivethirtyeight')
from datascience import *
import seaborn as sns

from client.api.notebook import Notebook

In [ ]:
import skimage as sk
import skimage.io as skio

im = skio.imread('data.png')
skio.imshow(im)
plt.tick_params(bottom='off', left='off', top='off', right='off',
                 labelleft='off', labelbottom='off')
plt.grid(False)

In [ ]: