From a3fab5832f7b14a3cb8ef78114ee47630e92160c Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Tue, 30 Jul 2024 18:19:30 -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 b098f8f..a6c347a 100644 --- a/src/nwb_project_analytics/dandistats.py +++ b/src/nwb_project_analytics/dandistats.py @@ -243,7 +243,7 @@ def plot_number_of_dandisets_by_date(dandistats_df: pd.DataFrame, linewidth=0.5) for label in ax.get_xticklabels(which='major'): label.set(rotation=30, horizontalalignment='right') - ax.set_ylabel('# of NWB dandisets') + ax.set_ylabel('# of NWB Dandisets') ax.set_xlabel("Date created") # Formatting the x-axis to show dates correctly plt.gca().xaxis.set_major_locator(mpl_dates.DayLocator(interval=180))