gpt4 book ai didi

python-2.7 - 属性错误 : 'DataFrame' object has no attribute 'Height'

转载 作者:行者123 更新时间:2023-12-04 01:56:33 24 4
gpt4 key购买 nike

我能够将 csv 文件转换为 pandas DataFormat 并能够打印出表格,如下所示。但是,当我尝试打印高度列时,出现错误。我怎样才能解决这个问题?

import pandas as pd

df = pd.read_csv('/path../NavieBayes.csv')
print df #this prints out as seen below
print df.Height #this gives me the "AttributeError: 'DataFrame' object has no attribute 'Height'

Height Weight Classifer
0 70.0 180 Adult
1 58.0 109 Adult
2 59.0 111 Adult
3 60.0 113 Adult
4 61.0 115 Adult

最佳答案

我之前在阅读 csv 时遇到过类似的问题。 .假设是一样的:

col_name =df.columns[0]
df=df.rename(columns = {col_name:'new_name'})

我的情况下的错误是由(我认为)由 csv 中的字节顺序标记或其他一些非打印字符添加到第一列标签引起的。 df.columns返回一个列名数组。 df.columns[0]得到第一个。尝试打印它,看看结果是否有什么奇怪的地方。

关于python-2.7 - 属性错误 : 'DataFrame' object has no attribute 'Height' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28163439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com