Python | Pandas DatetimeIndex.ceil() Last Updated : 29 Dec, 2018 Comments Improve Suggest changes Like Article Like Report Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.ceil() function ceil the data to the specified frequency. The function takes the target frequency as input. It returns a new DatetimeIndex object. Syntax: DatetimeIndex.ceil(freq) Parameters : freq : The frequency level to ceil the index to. Must be a fixed frequency like βSβ (second) not βMEβ (month end) Return : Index of the same type for a DatetimeIndex or TimedeltaIndex, or a Series with the same index for a Series Example #1: Use DatetimeIndex.ceil() function to ceil the data of the DatetimeIndex object to the specified frequency. Python3 # importing pandas as pd import pandas as pd # Create the DatetimeIndex # Here 'S' represents secondly frequency didx = pd.DatetimeIndex(start ='2000-01-15 08:00', freq ='S', periods = 4) # Print the DatetimeIndex print(didx) Output : Now we want to ceil the second based frequency of the DatetimeIndex object to minute based frequency Python3 # convert to the passed frequency # 'T' represents minute based frequency didx.ceil('T') Output : As we can see in the output, the function has returned the ceiling values of the DatetimeIndex object. Example #2: Use DatetimeIndex.ceil() function to ceil the data of the DatetimeIndex object to the specified frequency. Python3 # importing pandas as pd import pandas as pd # Create the DatetimeIndex # Here 'T' represents minutely frequency didx = pd.DatetimeIndex(start ='2018-11-15 09:45', freq ='T', periods = 5) # Print the DatetimeIndex print(didx) Output : Now we want to ceil the minute based frequency of the DatetimeIndex object to hour based frequency Python3 # ceil the given frequency didx.ceil('H') Output : As we can see in the output, the function has ceil the values of the DatetimeIndex object to the desired frequency. Comment More infoAdvertise with us Next Article Python | Pandas DatetimeIndex.ceil() S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Python pandas-datetimeIndex Practice Tags : python Similar Reads Python | Pandas DatetimeIndex.date Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.date attribute outputs an Index object containing the date values 2 min read Python | Pandas DatetimeIndex.day Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.day attribute outputs an Index object containing the days in each 2 min read Python | Pandas DatetimeIndex.tz_convert() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.tz_convert() function convert tz-aware DatetimeIndex from one tim 2 min read Python | Pandas DatetimeIndex.time Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.time attribute outputs an Index object containing the time values 2 min read Python | Pandas DatetimeIndex.hour Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.hour attribute outputs an Index object containing the hour values 2 min read Python | Pandas DatetimeIndex.year Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.year attribute outputs an Index object containing the value of ye 2 min read Python | Pandas DatetimeIndex.freq Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.freq attribute returns the frequency object if it is set in the D 2 min read Python | Pandas DatetimeIndex.month Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.month attribute outputs an Index object containing numeric values 2 min read Python | Pandas DatetimeIndex.minute Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.minute attribute outputs an Index object containing the minute va 2 min read Python | Pandas DatetimeIndex.second Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas DatetimeIndex.second attribute outputs an Index object containing the second va 2 min read Like