示例#1
0
 def plot_investment(filepath, save="", show=""):
     # TODO: implement plot_investment method
     if show:
         fig = InvestmentProject.plot(filepath=filepath, show=show)
         if save:
             fig.savefig("")
 def plot_investment(filepath, save="", show=False):
     if show:
         inv = InvestmentProject.plot(filepath=filepath, show=show)
         fig = inv.plot()
     if save:
         fig.savefig(".png")
 def plot_investment(filepath, save="", show=False):
     # TODO: implement plot_investment method
     figure = InvestmentProject.plot(show=show)
     if save:
         figure.to_csv(filepath=filepath)
 def plot_investment(filepath, save="", show=False):
     fig = InvestmentProject.plot(show=show)
     if save:
         fig.to_csv(filepath = filepath)