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/playtimegraph.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)
542 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 ptanalysis(): | |
pttimes = [0] | |
ptask = input("Would you like to just check your playtime or add?") | |
ptask = ptask.lower() | |
if ptask == "check": | |
ptgraph(pttimes) | |
elif ptask == "add": | |
ptadd = int(input("Alright, how many hours did you play?")) | |
pttimes.append(ptadd) | |
ptgraph(pttimes) | |
def ptgraph(pttimes): | |
table = pd.DataFrame(pttimes) | |
ax = table.plot() | |
fig = ax.get_figure() | |
fig.savefig('ptchart.png') | |
ptanalysis() |