Skip to content

Commit

Permalink
remove plot function from cs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brettasmi committed Nov 4, 2017
1 parent 5e301d3 commit dcb0525
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cs.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,3 @@ def get_price_summary(price_dict, summary_stat):
for key in price_dict:
summary_list.append(tuple([key, summary_stat(price_dict[key])]))
return summary_list

def plot_summary(summary_list, plot_title):
"""return plot object"""
x_val = [i[0] for i in summary_list]
y_val = [i[1] for i in summary_list]
return plt.plot(x_val, y_val)

0 comments on commit dcb0525

Please sign in to comment.