no attribute named read_csv in pandas python(pandas python中没有名为read_csv的属性)
问题描述
我是机器学习的新手,我正在使用 Python 中的 pandas 创建数据集.我查阅了一个教程,只是在尝试创建数据框的基本代码,但我不断得到以下回溯:
I am new to machine learning and am creating a dataset using pandas in Python. I looked up a tutorial and was just trying out a basic code for creating a dataframe, but I keep getting the following trace-back:
AttributeError: 'module' 对象没有属性 'read_csv'
AttributeError: 'module' object has no attribute 'read_csv'
我已将 csv 文件保存为 Excel 13 中的 csv(逗号分隔)格式.这是我的代码:
I have saved the csv file in the csv(comma delimited) formatfrom Excel 13. Here's my code:
import pandas
import csv
mydata = pandas.read_csv('foo.csv')
target = mydata["Label"]
data = mydata.ix[:,:-1]
推荐答案
工作中有一个名为pandas.py(和/或pandas.pyc)的文件目录,它被导入而不是 pandas 库.删除或重命名文件解决了问题.
There was a file named pandas.py (and/or pandas.pyc) in the working directory, which was imported instead of the pandas library. Removing or renaming the file/s solved the problem.
这篇关于pandas python中没有名为read_csv的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:pandas python中没有名为read_csv的属性
基础教程推荐
- 包装空间模型 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
