Skip to content
Permalink
c1be29d5c7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (18 sloc) 602 Bytes
import pandas as pd
import matplotlib.pyplot as plt
def sleepanalysis():
sleeptimes = [0]
sleepask = input("Would you like to just check your sleep times or add?")
sleepask = sleepask.lower()
if sleepask == "check":
sleepgraph(sleeptimes)
elif sleepask == "add":
sleepadd = int(input("Alright, how many hours did you sleep?"))
sleeptimes.append(sleepadd)
sleepgraph(sleeptimes)
def sleepgraph(sleeptimes):
table = pd.DataFrame(sleeptimes)
ax = table.plot()
fig = ax.get_figure()
fig.savefig('sleepchart.png')
sleepanalysis()