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) 551 Bytes
import pandas as pd
import matplotlib.pyplot as plt
def exanalysis():
extimes = [0]
exask = input("Would you like to just check your exercise times or add?")
exask = exask.lower()
if exask == "check":
exgraph(extimes)
elif exask == "add":
exadd = int(input("Alright, how many hours did you exercise?"))
extimes.append(exadd)
exgraph(extimes)
def exgraph(extimes):
table = pd.DataFrame(extimes)
ax = table.plot()
fig = ax.get_figure()
fig.savefig('exchart.png')
exanalysis()