Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,7 @@ def plot_usage_volume(inputs):
|
|
39 |
axs[1].set_ylabel("Usage Volume")
|
40 |
axs[1].set_title("Aggregated Usage Volume for All Systems")
|
41 |
|
42 |
-
Set xticks to only show every 3 months
|
43 |
axs[0].set_xticks(aggregated_data.index[::3])
|
44 |
axs[1].set_xticks(aggregated_data.index[::3])
|
45 |
|
|
|
39 |
axs[1].set_ylabel("Usage Volume")
|
40 |
axs[1].set_title("Aggregated Usage Volume for All Systems")
|
41 |
|
42 |
+
#Set xticks to only show every 3 months
|
43 |
axs[0].set_xticks(aggregated_data.index[::3])
|
44 |
axs[1].set_xticks(aggregated_data.index[::3])
|
45 |
|