pandas 文件读取与配置

安装pandas

pip install pandas

运行jupyter

jupyter notebook

查看pandas版本号

import pandas as pd
pd.__version__
file_path=r"C:\Users\liangsh\Desktop\flaskdemo2\dash_jianshu\indicators.csv"```

```python
#使用pandas 读取CSV文件,指定字符集编码

df = pd.read_csv(file_path,encoding="utf8")
df.head(5)

在这里插入图片描述

#去除文件中未定义的首列内容,一般是由于生成文件时没有去除索引产生的
df = pd.read_csv(file_path,encoding="utf8",index_col=0)
df.head(5)

在这里插入图片描述

#显示指定的列,并忽略索引
df = pd.read_csv(file_path,encoding="utf8",usecols=['Country Name','Year'], index_col=0)
df.head(5)

在这里插入图片描述

#显示指定的列,不忽略索引
df = pd.read_csv(file_path,encoding="utf8",usecols=['Country Name','Year','Value'])
df.head(5)

在这里插入图片描述

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐