将列表中的列名分配给表

我有一个100行乘25列的数据表,没有列标题。我有一个25个项目的列表,我希望将其分配为数据表的列标题(它们的顺序已经正确)。我不知道如何使用熊猫有效地做到这一点。任何建议将是巨大的!



LEATH
浏览 155回答 2
2回答

拉丁的传说

您可以columns直接直接分配给该属性。>>> import pandas>>> # create three rows of [0, 1, 2]>>> df = pandas.DataFrame([range(3), range(3), range(3)])>>> print df   0  1  20  0  1  21  0  1  22  0  1  2>>> my_columns = ["a", "b", "c"]>>> df.columns = my_columns>>> print df   a  b  c0  0  1  21  0  1  22  0  1  2您还可以分配索引以完成类似的操作>>> df.index = ["row1", "row2", "row3"]>>> print df      a  b  crow1  0  1  2row2  0  1  2row3  0  1  2
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python