We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b3489 commit 40dc2a4Copy full SHA for 40dc2a4
contributors/contributors.qmd
@@ -207,7 +207,7 @@ Here we look at new contributors over time. This plot includes all contributors
207
208
```{python}
209
# Group by month and count new contributors
210
-monthly_counts = contribs_data.resample("M", on="date_added").count()["name"]
+monthly_counts = contribs_data.resample("ME", on="date_added").count()["name"]
211
212
# Compute cumulative sum for growth over time
213
cumulative_growth = monthly_counts.cumsum().reset_index()
requirements.txt
@@ -10,3 +10,4 @@ nox
10
pygithub # for github API
11
plotly
12
panel
13
+pytz
0 commit comments