Joseph Spada commited on
Commit
9ca4933
·
1 Parent(s): 53da1d8

change x axis

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -108,7 +108,7 @@ def plot_interest_coverage(interest_rate):
108
  plt.legend(loc = "upper left")
109
  plt.ylim(0, 1.05)
110
  plt.yticks(np.arange(0, 1.1, 0.1))
111
- plt.xticks(range(1940,2055,2), rotation = 90)
112
  plt.axvline(x = 2024, color = "black")
113
  plt.grid(True, axis = 'y', linestyle = '--', linewidth = 0.7)
114
 
 
108
  plt.legend(loc = "upper left")
109
  plt.ylim(0, 1.05)
110
  plt.yticks(np.arange(0, 1.1, 0.1))
111
+ plt.xticks(range(1940,2055,4), rotation = 45)
112
  plt.axvline(x = 2024, color = "black")
113
  plt.grid(True, axis = 'y', linestyle = '--', linewidth = 0.7)
114