Series.dt
se puede usar para acceder a los valores de la serie como datetimelike y devolver varias propiedades. El atributo Pandas Series.dt.is_leap_year
devuelve un indicador booleano si la fecha pertenece a un año bisiesto.
Sintaxis: Series.dt.is_leap_year
Parámetro: Ninguno
Devoluciones: array numpy
Ejemplo n.º 1: use Series.dt.is_leap_year
el atributo para verificar si las fechas en los datos subyacentes del objeto de serie dado pertenecen a un año bisiesto.
# importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(['2012-12-31', '2019-1-1 12:30', '2008-02-2 10:30', '2010-1-1 09:25', '2019-12-31 00:00']) # Creating the index idx = ['Day 1', 'Day 2', 'Day 3', 'Day 4', 'Day 5'] # set the index sr.index = idx # Convert the underlying data to datetime sr = pd.to_datetime(sr) # Print the series print(sr)
Producción :
Ahora usaremos Series.dt.is_leap_year
el atributo para verificar si las fechas en el objeto de serie dado pertenecen a un año bisiesto.
# check if dates given # belongs to a leap year. result = sr.dt.is_leap_year # print the result print(result)
Producción :
Como podemos ver en el resultado, el Series.dt.is_leap_year
atributo accedió con éxito y devolvió valores booleanos que indican si las fechas en el objeto de serie dado pertenecen a un año bisiesto.
Ejemplo n.º 2: use Series.dt.is_leap_year
el atributo para verificar si las fechas en los datos subyacentes del objeto de serie dado pertenecen a un año bisiesto.
# importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(pd.date_range('2012-12-31 00:00', periods = 5, freq = 'D')) # Creating the index idx = ['Day 1', 'Day 2', 'Day 3', 'Day 4', 'Day 5'] # set the index sr.index = idx # Print the series print(sr)
Producción :
Ahora usaremos Series.dt.is_leap_year
el atributo para verificar si las fechas en el objeto de serie dado pertenecen a un año bisiesto.
# check if dates given # belongs to a leap year. result = sr.dt.is_leap_year # print the result print(result)
Producción :
Como podemos ver en el resultado, el Series.dt.is_leap_year
atributo accedió con éxito y devolvió valores booleanos que indican si las fechas en el objeto de serie dado pertenecen a un año bisiesto.
Publicación traducida automáticamente
Artículo escrito por Shubham__Ranjan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA