%pylab inline
import pandas as pd
import numpy as np
import matplotlib.pyplot as pl
from IPython.display import HTML
Populating the interactive namespace from numpy and matplotlib
data = pd.read_csv("Readings.csv")
data
pl.xlabel = 'Time(s)'
pl.ylabel = 'Readings'
pl.title("Income data")
pl.plot(data.Time, data.Reading,'b-')
# Youtube
HTML('<iframe width="560" height="315" src="https://www.youtube.com/watch?v=m5DPct2VuE4" frameborder="0" allowfullscreen></iframe>')
/shared-libs/python3.7/py-core/lib/python3.7/site-packages/IPython/core/display.py:717: UserWarning: Consider using IPython.display.IFrame instead
warnings.warn("Consider using IPython.display.IFrame instead")