pandas python中没有名为read_csv的属性 [英] no attribute named read_csv in pandas python

查看:80
本文介绍了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的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆