當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas DatetimeIndex.is_quarter_end用法及代碼示例


Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。

Pandas DatetimeIndex.is_quarter_end屬性是日期是否為一個季度的最後一天的指標。如果日期是該季度的最後一天,則返回True否則返回False

用法: DatetimeIndex.is_quarter_end

返回值:包含邏輯值的numpy數組。

範例1:采用DatetimeIndex.is_quarter_end屬性,以檢查DatetimeIndex對象中存在的日期是否為該季度的最後一天。

# importing pandas as pd 
import pandas as pd 
  
# Create the DatetimeIndex 
didx = pd.DatetimeIndex(['2014-01-31', '2014-04-30', '2017-03-31', '2000-12-02']) 
  
# Print the DatetimeIndex 
print(didx)

輸出:

現在,我們要查找給定DatetimeIndex對象中包含的日期是否為該季度的最後一天。

# find if the days are the last day of the quarter. 
didx.is_quarter_end

輸出:

從輸出中可以看到,該函數返回了一個numpy數組,其中包含DatetimeIndex對象的每個條目的邏輯值。True值表示相應的日期是該季度的最後一天,False值表示對應的日期不是該季度的最後一天。

範例2:采用DatetimeIndex.is_quarter_end屬性,以檢查DatetimeIndex對象中存在的日期是否為該季度的最後一天。

# importing pandas as pd 
import pandas as pd 
  
# Create the DatetimeIndex 
idx = pd.date_range('2011-03-30', periods = 5) 
  
# Print the DatetimeIndex 
print(didx)

輸出:

現在,我們要查找給定DatetimeIndex對象中包含的日期是否為該季度的最後一天。

# find if the days are the last day of the quarter. 
didx.is_quarter_end

輸出:

從輸出中可以看到,該函數返回了一個numpy數組,其中包含DatetimeIndex對象的每個條目的邏輯值。True值表示相應的日期是該季度的最後一天,False值表示對應的日期不是該季度的最後一天。



相關用法


注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas DatetimeIndex.is_quarter_end。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。