Permalink
Cannot retrieve contributors at this time
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?
ChatBot/exercisegraph.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (18 sloc)
551 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |