Skip to content

Commit

Permalink
update polars-book-cn
Browse files Browse the repository at this point in the history
  • Loading branch information
linjing-lab committed Dec 6, 2023
1 parent 3841530 commit 9b7bd4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion user_guide/src/examples/time_series/days_month.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# 时间轴(从low到high,间隔为1天,轴名称为"time")
df = pl.date_range(start=datetime(2021, 1, 1),
end=datetime(2021, 12, 31),
interval="1d", name="time",
interval="1d",
name="time",
eager=True).to_frame()

out = (
Expand Down

0 comments on commit 9b7bd4b

Please sign in to comment.