📜  Python|熊猫 DatetimeIndex.day_name()

📅  最后修改于: 2022-05-13 01:55:16.589000             🧑  作者: Mango

Python|熊猫 DatetimeIndex.day_name()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas DatetimeIndex.day_name()函数返回具有指定区域设置的 DateTimeIndex 的日期名称。默认语言环境是 None 在这种情况下,名称以英语返回。

示例 #1:使用DatetimeIndex.day_name()函数返回 DatetimeIndex 对象中每个条目的日期名称。返回法语语言环境中的日期名称

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
# Here 'Q' represents quarterly frequency 
didx = pd.DatetimeIndex(start ='2018-11-15 09:45:10', freq ='Q', periods = 5)
  
# Print the DatetimeIndex
print(didx)

输出 :

现在我们要返回法语语言环境中的日期名称。

# return the names of the days in French
didx.day_name(locale ='French')

输出 :

正如我们在输出中看到的,该函数返回了一个 Index 对象,其中包含法语日期的名称。

让我们用英文返回日期的名称

# return the names of the days in English
didx.day_name(locale ='English')

输出 :
示例 #2:使用DatetimeIndex.day_name()函数返回 DatetimeIndex 对象中每个条目的日期名称。返回德语语言环境中的日期名称

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
# Here 'M' represents monthly frequency 
didx = pd.DatetimeIndex(start ='2015-03-02', freq ='M', periods = 5)
  
# Print the DatetimeIndex
print(didx)

输出 :

现在我们要返回德语语言环境中的日期名称。

# return the names of the days in German
didx.day_name(locale ='German')

输出 :

正如我们在输出中看到的那样,该函数返回了一个 Index 对象,其中包含德语语言环境中的日期名称。