In [3]:
import pandas as pd
df = pd.read_csv("https://data.sparkfun.com/output/n1YRX98dq9C6X0LrZdvD.csv")
df.head(10)
Out[3]:
In [2]:
df.describe()
Out[2]:
In [16]:
%matplotlib inline
import numpy as np
import matplotlib
from matplotlib import pyplot as plt
import seaborn as sns
In [24]:
plt.figure()
df.plot('timestamp', subplots=True, figsize=(8, 6))
plt.gcf().autofmt_xdate()
In [ ]:
In [ ]: