千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:哈尔滨千锋IT培训  >  技术干货  >  如何用python处理数据

如何用python处理数据

来源:千锋教育
发布人:xqq
时间:2023-11-12 23:11:12

python处理数据利器→Pandas

数据一般格式:csv/xlsx

如何用pandas读取数据

案例:用pandas处理商铺数据

用pandas处理

导入模块

importpandasaspd

#导入pandas模块

importwarnings

warnings.filterwarnings('ignore')

#不发出警告

print('成功导入模块')

#如何用pandas读取数据-csv

df=pd.read_csv('/home/kesci/商铺数据.csv')

print(type(df),df['name'].dtype)#查看df类型,查看df中一列的数值类型

df.head()

#用pandas处理商铺数据-comment字段清洗

df1=df[df['comment'].str.contains('条')]

df1['comment']=df1['comment'].str.split('条').str[0]

print(df1['comment'].dtype)

df1['comment']=df1['comment'].astype('int')

print(df1['comment'].dtype)#更改列数值类型

df1.head()

#用pandas处理商铺数据-price字段清洗

df1=df1[df1['price'].str.contains('¥')]

df1['price']=df1['price'].str.split('¥').str[-1]

df1['price']=df1['price'].astype('float')

print(df1['price'].dtype)#更改列数值类型

df1.head()

以上内容为大家介绍了如何用python处理数据,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python函数中的参数有哪些?

2023-11-14

python中pygal模块如何使用?

2023-11-14

Python描述符中有哪三种方法?

2023-11-14

最新文章NEW

如何使用python any()判断多元素?

2023-11-14

python中doctest库是什么?

2023-11-14

python模块引入的三种方式

2023-11-14

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>