pandas 文件读取与配置
pandas 文件读取与配置安装pandaspip install pandas运行jupyterjupyter notebook查看pandas版本号import pandas as pdpd.__version__file_path=r"C:\Users\liangsh\Desktop\flaskdemo2\dash_jianshu\indicators.csv"``````python#使用
·
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)
更多推荐
已为社区贡献2条内容
所有评论(0)