pandas NameError: 名称 'pd' 未定义

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/40407090/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 15:45:28  来源:igfitidea点击:

NameError: name 'pd' is not defined

pandasimportnameerror

提问by dbldee

I am attempting run in Jupyter

我正在尝试在 Jupyter 中运行

import pandas as pd                     
import matplotlib.pyplot as plt          # plotting
import numpy as np                       # dense matrices
from scipy.sparse import csr_matrix      # sparse matrices
%matplotlib inline

However when loading the dataset with

但是,当加载数据集时

wiki = pd.read_csv('people_wiki.csv')
# add id column
wiki['id'] = range(0, len(wiki))
wiki.head(10)

the following error persists

以下错误仍然存​​在

NameError                                 Traceback (most recent call last)
<ipython-input-1-56330c326580> in <module>()
----> 1 wiki = pd.read_csv('people_wiki.csv')
      2 # add id column
      3 wiki['id'] = range(0, len(wiki))
      4 wiki.head(10)

NameError: name 'pd' is not defined

Any suggestions appreciated

任何建议表示赞赏

回答by martin-martin

Select Restart & Clear Outputand run the cells again from the beginning.

Restart & Clear Output从头开始再次选择并运行单元格。

I had the same issue, and as Ivansuggested in the comment, this resolved it.

我遇到了同样的问题,正如Ivan在评论中所建议的那样,这解决了它。