PythonPandas-DateTimeIndexの日付が月の最初の日であるかどうかを示します
DateTimeIndexの日付が月の最初の日であるかどうかを確認するには、 DateTimeIndex.is_month_startを使用します プロパティ。
まず、必要なライブラリをインポートします-
import pandas as pd
期間6、頻度をD、つまり日数としてDatetimeIndexを作成します。タイムゾーンはオーストラリア/アデレード-
datetimeindex = pd.date_range('2021-9-21 02:30:50', periods=6, tz='Australia/Adelaide', freq='5D')
DateTimeIndexを表示-
print("DateTimeIndex...\n", datetimeindex)
DateTimeIndexの日付が月の最初の日であるかどうかを確認します-
print("\nCheck whether the date in DateTimeIndex is the first day of the month...\n", datetimeindex.is_month_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-9-21 02:30:50', periods=6, tz='Australia/Adelaide', freq='5D') # 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 month print("\nCheck whether the date in DateTimeIndex is the first day of the month...\n", datetimeindex.is_month_start)
出力
これにより、次のコードが生成されます-
DateTimeIndex... DatetimeIndex(['2021-09-21 02:30:50+09:30', '2021-09-26 02:30:50+09:30', '2021-10-01 02:30:50+09:30', '2021-10-06 02:30:50+10:30', '2021-10-11 02:30:50+10:30', '2021-10-16 02:30:50+10:30'], dtype='datetime64[ns, Australia/Adelaide]', freq='5D') DateTimeIndex frequency... <5 * Days> Check whether the date in DateTimeIndex is the first day of the month... [False False True False False False]
-
PythonPandas-最初の出現を除いて重複するインデックス値を示します
最初の出現を除いて重複するインデックス値を示すには、 index.duplicated()。を使用します。 維持を使用する 値がfirst。のパラメータ まず、必要なライブラリをインポートします- import pandas as pd いくつかの重複を含むインデックスの作成- index = pd.Index(['Car','Bike','Airplane','Ship','Airplane']) インデックスを表示- print("Pandas Index with duplicates...
-
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