CSV列标题在Pandas中没有显示?

huangapple go评论77阅读模式
英文:

CSV column heading isn't showing up in Pandas?

问题

我正在寻找使用pandas导入以下CSV文件(PIC1),以便最终删除与Alaska FIPS代码(02000-02999)相对应的所有行,但是当我尝试读取FIPS列标题时,我遇到了以下问题(PIC2)。

我对Python/pandas和编程一窍不通,所以非常感谢任何指导?

PIC1
PIC2

我已经尝试在网上研究这个问题,但没有结果。

英文:

I am looking to import the following CSV file (PIC1) using pandas so that I can ultimately drop all rows that correspond to Alaska FIPS codes (02000-02999), but when I try to read out the FIPS column heading I encounter the following issue. (PIC2).

I am incredibly new to python/pandas and coding in general, so any direction is greatly appreciated?

PIC1
PIC2

I have tried researching the issue online but to no avail.

答案1

得分: 1

在读取CSV文件后,将以下内容添加以删除所有标题中的空格:

df.columns = df.columns.str.replace(' ', '')
英文:

Add this after reading the csv file to remove the spaces in all the headers:

df.columns = df.columns.str.replace(' ', '')

huangapple
  • 本文由 发表于 2023年6月26日 08:13:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76552888.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定