Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How pandas uses dt objects

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how pandas uses dt objects. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

The use of dt objects

Series data type: datetime

Because the data requires a datetime type, the following uses pandas's date_range () to generate a set of dates datetime that demonstrates how to manipulate dt objects.

> daterng = pd.Series (pd.date_range ('2017, periods=9) Freq='Q') > > daterng0 2017-03-311 2017-06-2017-09-303 2017-12-314 2018-03-315 2018-06-306 2018-09-307 2018-12-318 2019-03-31dtype: datetime64 [ns] > > daterng.dt.day_name () 0 Friday1 Friday2 Saturday3 Sunday4 Saturday5 Saturday6 Sunday7 Monday8 Sundaydtype: object > > # check the second half > > daterng [daterng.dt.quarter > 2] 2 2017-09-303 2017-12-316 2018-09-2018-12-31dtype: datetime64 [ns] > > daterng [daterng.dt.is _ year_end] 3 2017-12-317 2018-12-31dtype: datetime64 [ns]

The above three methods for dt are explained:

Series.dt.day_name (): judge the week from the date

Series.dt.quarter: judge the season by the date

Series.dt.is_year_end: judging from the date whether it is at the end of the year

Other methods are also based on some transformations of datetime, and use the transformations to see specific micro or macro dates.

This is the end of this article on "how pandas uses dt objects". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report