Skip to content

Instantly share code, notes, and snippets.

@muripoLife
Created March 23, 2020 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muripoLife/84734fa48c3ff641fadb9d2649b7dda8 to your computer and use it in GitHub Desktop.
Save muripoLife/84734fa48c3ff641fadb9d2649b7dda8 to your computer and use it in GitHub Desktop.
pandasでカレンダーを作る。
# original calendar
original_calendar_df=pd.DataFrame(pd.date_range("2011", freq="D", periods=2000), columns=["date"])
original_calendar_df["date"] = original_calendar_df.date.astype("str")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment