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) 594 Bytes
import pandas as pd
import matplotlib.pyplot as plt
def foodanalysis():
foodintake = [0]
foodask = input("Would you like to just check your food intakes or add?")
foodask = sleepask.lower()
if foodask == "check":
foodgraph(foodintake)
elif foodask == "add":
foodadd = int(input("Alright, how many calories did you ingest"))
foodintake.append(foodadd)
foodgraph(foodintake)
def foodgraph(sleeptimes):
table = pd.DataFrame(foodintake)
ax = table.plot()
fig = ax.get_figure()
fig.savefig('foodchart.png')
foodanalysis()