怎么导入excel到jupyter[jupyter使用教程]

python

导入excel到jupyter的方法:

1、在jupyter的首页点击“Upload”选项,选择Excel文件,然后点击上传即可导入。

此方法导入是有大小限制的,可以直接将Excel文件复制到Jupyter notebook目录下避免大小限制。

2、读取Excel数据的方法:

新建python3,输入如下代码即可读取

import numpy as np

import pandas as pd

dataset=pd.read_excel('2007.xlsx')

X=dataset.iloc[:,:-1].values

Y=dataset.iloc[:,3].values

dataset

推荐学习《python教程》

以上是 怎么导入excel到jupyter[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526422.html

回到顶部