Python
 Computer >> コンピューター >  >> プログラミング >> Python

PythonPandas-DateTimeIndexの日付が四半期の最初の日であるかどうかを示します


DateTimeIndexの日付が四半期の最初の日であるかどうかを確認するには、 DateTimeIndex.is_quarter_startを使用します。 プロパティ。

まず、必要なライブラリをインポートします-

import pandas as pd

期間6、頻度をD、つまり日数としてDatetimeIndexを作成します-

datetimeindex = pd.date_range('2021-10-1 02:30:50', periods=6, tz='Australia/Adelaide', freq='30D')

DateTimeIndexを表示-

print("DateTimeIndex...\n", datetimeindex)

DateTimeIndexの日付が四半期の最初の日であるかどうかを確認します-

print("\nCheck whether the date in DateTimeIndex is the first day of the quarter...\n",
datetimeindex.is_quarter_start)

以下はコードです-

import pandas as pd

# DatetimeIndex with period 6 and frequency as D i.e. days
# The timezone is Australia/Adelaide
datetimeindex = pd.date_range('2021-10-1 02:30:50', periods=6, tz='Australia/Adelaide', freq='30D')

# display DateTimeIndex
print("DateTimeIndex...\n", datetimeindex)

# display DateTimeIndex frequency
print("DateTimeIndex frequency...\n", datetimeindex.freq)

# Check whether the date in DateTimeIndex is the first day of the quarter
# Result is based on the following quarters of an year:
# Quarter 1 = 1st January to 31st March
# Quarter 2 = 1st April to 30th June
# Quarter 3 = 1st July to 30th September
# Quarter 4 = 1st October to 31st December
print("\nCheck whether the date in DateTimeIndex is the first day of the quarter...\n",
datetimeindex.is_quarter_start)

出力

これにより、次のコードが生成されます-

DateTimeIndex...
DatetimeIndex(['2021-10-01 02:30:50+09:30', '2021-10-31 02:30:50+10:30',
'2021-11-30 02:30:50+10:30', '2021-12-30 02:30:50+10:30',
'2022-01-29 02:30:50+10:30', '2022-02-28 02:30:50+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='30D')
DateTimeIndex frequency...
<30 * Days>

Check whether the date in DateTimeIndex is the first day of the quarter...
[ True False False False False False]

  1. Pythonを使用して特定の年の最初のデートを見つける方法は?

    このプログラムでは、年の最初の日を印刷する必要があります。ユーザー入力として1年かかる必要があります。 アルゴリズム Step 1: Import the datetime library. Step 2: Take year as input from the user. Step 3: Get the first day of the year by passing month, day and year as parameters to the datetime.datetime() function Step 4: Display the first day using strftim

  2. Pythonの年間最優秀日

    「YYYY-MM-DD」の形式の日付があるとします。その年の日数を返す必要があります。したがって、日付が「2019-02-10」の場合、これは1年の41日目です。 これを解決するには、次の手順に従います- Dが[0、31、28、31、30、31、30、31、31、30、31、30、31]のような日数の配列であるとします 日付を年、月、日のリストに変換します 年がうるう年の場合は、日付D [2]=29を設定します 月mm–1までの日数とそれ以降の日数を合計します。 例 理解を深めるために、次の実装を見てみましょう- class Solution(object):   &nbs