From 7059a572b3df07683cfa5c9b5476979b4c5a1289 Mon Sep 17 00:00:00 2001 From: Venrey Date: Sat, 13 Jul 2024 06:01:44 +0000 Subject: [PATCH] Added labels to all graphs --- graphs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/graphs.py b/graphs.py index 86ee09d..6a8f3db 100644 --- a/graphs.py +++ b/graphs.py @@ -71,25 +71,25 @@ def gen_DI(wb): # Generates graph for Roth IRA def gen_Roth_IRA(wb): - fig = make_basic_greenred_NL("Roth IRA",wb["O Mountain"]["A2"].value,wb["O Mountain"]["C2"].value) + fig = make_basic_greenred("Roth IRA",wb["O Mountain"]["A2"].value,wb["O Mountain"]["C2"].value) fig.savefig('./.gen/Roth_IRA.png',dpi=300) # Generates graph for Roth Catch Up def gen_Roth_Catch_Up(wb): - fig = make_basic_greenred_NL("Roth Catch Up",wb["O Mountain"]["A4"].value,wb["O Mountain"]["C4"].value) + fig = make_basic_greenred("Roth Catch Up",wb["O Mountain"]["A4"].value,wb["O Mountain"]["C4"].value) fig.savefig('./.gen/Roth_Catch_Up.png',dpi=300) # Generates graph for 401K contribution def gen_401K_Contribution(wb): - fig = make_basic_greenred_NL("401K Contribution",wb["O Mountain"]["A6"].value,wb["O Mountain"]["C6"].value) + fig = make_basic_greenred("401K Contribution",wb["O Mountain"]["A6"].value,wb["O Mountain"]["C6"].value) fig.savefig('./.gen/401K_Contribution.png',dpi=300) # Generates graph for 401K contribution Catch Up def gen_401K_Catch_Up(wb): - fig = make_basic_greenred_NL("401K Catch Up",wb["O Mountain"]["A8"].value,wb["O Mountain"]["C8"].value) + fig = make_basic_greenred("401K Catch Up",wb["O Mountain"]["A8"].value,wb["O Mountain"]["C8"].value) fig.savefig('./.gen/401K_Catch_Up.png',dpi=300)