Procházet zdrojové kódy

Add maxCost parameter to plot function

KeyMasterOfGozer před 10 měsíci
rodič
revize
c111145b39
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      db.py

+ 2 - 1
db.py

@@ -41,7 +41,7 @@ def _hist(card=None,date=None,columns=['date','card-num','name','cost']):
 def hist(card=None,date=None,columns=['date','card-num','name','cost']):
     print(_hist(card,date,columns))
 
-def plot(card=None,columns=['cost','cost-min','cost-max']):
+def plot(card=None,columns=['cost','cost-min','cost-max'],maxCost=None):
     """must use either card or date.
         card cand be card-num or name
         date can be a datetime type or a string like 'yyy-mm-dd'
@@ -51,5 +51,6 @@ def plot(card=None,columns=['cost','cost-min','cost-max']):
     plt.title(str(card))
     plt.xlabel("Date")
     plt.ylabel("Cost")
+    plt.ylim(0,maxCost)
     plt.show()