英文:
CSV column heading isn't showing up in Pandas?
问题
我正在寻找使用pandas导入以下CSV文件(PIC1),以便最终删除与Alaska FIPS代码(02000-02999)相对应的所有行,但是当我尝试读取FIPS列标题时,我遇到了以下问题(PIC2)。
我对Python/pandas和编程一窍不通,所以非常感谢任何指导?
我已经尝试在网上研究这个问题,但没有结果。
英文:
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?
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(' ', '')
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论