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

Pythonパンダ-DateTimeIndexの日付がうるう年に属しているかどうかを示します


DateTimeIndexの日付がうるう年に属しているかどうかを確認するには、 DateTimeIndex.is_leap_yearを使用します。 プロパティ

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

import pandas as pd

期間6、頻度をY、つまり年としてDatetimeIndexを作成します-

datetimeindex = pd.date_range('2021-12-30 02:30:50', periods=6, tz='Australia/Adelaide', freq='3Y')

DateTimeIndexを表示-

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

DateTimeIndexの日付がうるう年かどうかを確認します-

print("\nCheck whether the date in DateTimeIndex belongs to a leap year or not...\n",
datetimeindex.is_leap_year)

以下はコードです-

import pandas as pd

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

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

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

# Check whether the date in DateTimeIndex is a leap year or not
print("\nCheck whether the date in DateTimeIndex belongs to a leap year or not...\n",
datetimeindex.is_leap_year)

出力

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

DateTimeIndex...
DatetimeIndex(['2021-12-31 02:30:50+10:30', '2024-12-31 02:30:50+10:30',
'2027-12-31 02:30:50+10:30', '2030-12-31 02:30:50+10:30',
'2033-12-31 02:30:50+10:30', '2036-12-31 02:30:50+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='3A-DEC')
DateTimeIndex frequency...
<3 * YearEnds: month=12>

Check whether the date in DateTimeIndex belongs to a leap year or not...
[False True False False False True]

  1. PythonPandas-DateTimeIndexから頻度を抽出します

    DateTimeIndexから頻度を抽出するには、 DateTimeIndex.freqを使用します パンダのプロパティ。 まず、必要なライブラリをインポートします- import pandas as pd 期間6、頻度をD、つまり日としてDatetimeIndexを作成します。タイムゾーンはオーストラリア/アデレード- datetimeindex = pd.date_range('2021-10-20 02:30:50', periods=6, tz='Australia/Adelaide', freq='D') DateTimeInd

  2. PythonPandas-年がPeriodオブジェクトからうるう年かどうかを確認します

    年がPeriodオブジェクトからうるう年であるかどうかを確認するには、 period.is_leap_yearを使用します。 財産。まず、必要なライブラリをインポートします- import pandas as pd pandas.Periodは期間を表します。 2つのPeriodオブジェクトの作成 period1 = pd.Period("2020-09-23 05:55:30") period2 = pd.Period(freq="Y", year = 2021, month = 7, day = 16, hour = 2, minute = 35)