Skip to content

Commit

Permalink
Update groupby.md
Browse files Browse the repository at this point in the history
  • Loading branch information
doctor-phil committed Oct 31, 2024
1 parent fb0c1ec commit 5918503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/pandas/groupby.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ index and a `Date` column added.
```{code-cell} python
df2 = df.copy()
df2["Date"] = pd.date_range(
start=pd.datetime.today().strftime("%m/%d/%Y"),
start=pd.Timestamp.today().strftime("%m/%d/%Y"),
freq="BQ",
periods=df.shape[0]
)
Expand Down

0 comments on commit 5918503

Please sign in to comment.