1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pandasで国民の祝日を除く平日を作成

Last updated at Posted at 2021-01-08

import pandas as pd

holidays = pd.read_csv(
    "https://www8.cao.go.jp/chosei/shukujitsu/syukujitsu.csv",
    # "https://www8.cao.go.jp/chosei/shukujitsu/shukujitsu.csv",
    encoding="cp932",
    parse_dates=[0],
)["国民の祝日・休日月日"].values

# 曜日指定
# weekmask_egypt = "Sun Mon Tue Wed Thu Fri Sat"
# bday_egypt = pd.offsets.CustomBusinessDay(holidays=holidays, weekmask=weekmask_egypt)

# 平日
bday_egypt = pd.offsets.CustomBusinessDay(holidays=holidays)

df_dates = pd.date_range("2021-01-01", "2021-01-31", freq=bday_egypt)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?