首页 > 代码库 > python中的panda库1

python中的panda库1

1 例子1

1 from pandas import read_csv;
2 
3 df = read_csv(H://pythonCode//4.1//1.csv)
4 df

截图

技术分享

 

1.1 修改表的内容编码

1 df = read_csv(D://PA//4.1//1.csv, encoding=UTF-8)

技术分享

2 去掉重复行

(1)读取一个csv

from pandas import read_csv;

df = read_csv(H:\\python数据分析基础与实践 VIP教程\\章节4数据处理\\4.3\\data.csv)

技术分享

(2)去掉重复的

 df= df.drop_duplicates();

技术分享

3 对excel文件的操作

#函数原型
#read_excel(filename,sheetname,header)
#参数意思
#filename:文件路径
#sheetname:sheet的名字

df = read_excel(‘H://pythonCode//4.1//3.xlsx‘, sheetname=‘data‘)

技术分享

 

python中的panda库1