我是机器学习的新手,我正在使用 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的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!