pandas中的Timestamp只保留日期不显示时间
目录
- Timestamp只保留日期不显示时间
- Timestamp.date()
- pandas从日期属性中提取年月日
- 将日期属性拆分成年、月、日
Timestamp只保留日期不显示时间
Timestamp.date()
拿到DataFrame中的一个时间戳后,加一个**.date()**即可
for time in df['日期']):print(time.date())
pandas从日期属性中提取年月日 在数据挖掘过程中,日期属性是非数值属性, 不能直接输入到模型,将日期属性拆分成年、月和日是必要的。
date属性是object类型的, 通过取单元格可以发现它是字符串类型,这样很容易提取年、月、日
文章图片
文章图片
将日期属性拆分成年、月、日
代码如下:
def DateSplit(df, col):"""split the object of '2010-01-02' into year(2010), month(1) and day(2).:param df:to operate data (type:DataFrame):param col: column label of date object (type:str):return: converted date (type: DataFrame)"""year, month, day = [], [], []data = https://www.it610.com/article/df.loc[:, col].valuesdf = df.drop([col], axis=1)for i in range(data.shape[0]):year.append(int(data[i][:4]))month.append(int(data[i][5:7]))day.append(int(data[i][8:]))date = pd.DataFrame({'year': year, 'month': month, 'day': day})result = pd.concat([date, df], axis=1)return result pm25_train = pd.read_csv("./datasets_PM25/pm25_train.csv")data= https://www.it610.com/article/DateSplit(df=pm25_train,col='date')data.head(10)
文章图片
【pandas中的Timestamp只保留日期不显示时间】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- pandas实现datetime64与unix时间戳互转
- 2017.12.20.
- 网络安全|mysql中的视图、触发器和存储过程
- 函数|sql中的substr与substring函数用法
- 投稿|耐克,体育运动龙头在消费复苏趋势中的“红与黑”
- React中的useId
- 区块链合约安全系列(三)(如何认识及预防公链合约中的自毁攻击)
- 麦林村我们的传奇(2)
- Python|Python Pandas中合并数据的5个函数使用详解
- 投稿|台积电:砍单潮中的 “另类” 傲骨