2022-05-10から1日間の記事一覧

出勤カレンダー

import pandas as pd year = "2022" def make_cal(df0, fn): df1 = df0.pivot( index=["remainder"], columns=["month", "quotient"], values=["day", "value"] ) df1.columns = df1.columns.reorder_levels(order=[1, 2, 0]) df1.sort_index(axis=1, inplac…