怎样用jupyter导入excel数据[jupyter使用教程]
怎样用jupyter导入excel数据?
Jupyter notebook只能打开当前目录下的数据集
相关推荐:jupyter教程
excel
有两种方法
#用pd包中的read_excel方法datasets2=pd.read_excel('汇总-京东.xlsx')
print(datasets2.head())
结果
#用pd包中的ExcelFile方法fileNameStr='汇总-京东.xlsx'
xls = pd.ExcelFile(fileNameStr)
salesDf = xls.parse('京东汇总')
salesDf.head(3)
结果
以上是 怎样用jupyter导入excel数据[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526399.html