From ee341ee25cd696ca3005c04a0399b895690138a9 Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Tue, 30 Jul 2024 18:19:39 -0700 Subject: [PATCH] Update src/nwb_project_analytics/dandistats.py Co-authored-by: Ben Dichter --- src/nwb_project_analytics/dandistats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nwb_project_analytics/dandistats.py b/src/nwb_project_analytics/dandistats.py index a6c347a..f380f68 100644 --- a/src/nwb_project_analytics/dandistats.py +++ b/src/nwb_project_analytics/dandistats.py @@ -276,7 +276,7 @@ def plot_size_of_dandisets_by_date(dandistats_df: pd.DataFrame, for label in ax.get_xticklabels(which='major'): label.set(rotation=30, horizontalalignment='right') ax.set_xlabel("Date") - _ = ax.set_ylabel("TB of NWB data on Dandi") + _ = ax.set_ylabel("TB of NWB data on DANDI") # Formatting the x-axis to show dates correctly plt.gca().xaxis.set_major_locator(mpl_dates.DayLocator(interval=180)) plt.gca().xaxis.set_major_formatter(mpl_dates.DateFormatter('%Y-%m-%d'))