简介: 本文主要介绍如何改变Series的data type。
查看数据类型
dataframe.dtypes
使用astype方法
cast the type as follows
dataframe.colname.astype('float')
dataframe.colname.astype('object')
也可以把string数据去掉部门非数字类型的字符后cast type
如去掉¥符号,在转换成int:
dataframe.colname.str.replace("¥", "").astype('int')
读取数据的时候更改
pd.read_csv("data", dtype = {"colname" : float})
附上小哥哥的视频链接Data analysis in Python with pandas
Youtube 🔗
哔哩哔哩 🔗
所有文章列表
pandas使用技巧总览
网友评论