#! /usr/bin/env python

import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_excel("wyzant-tutoring-hours.ods", engine="odf")

print(df.columns.tolist())

df.plot(x = "Date ", y = "Length ", kind = "scatter")
plt.show()