我有一个100行乘25列的数据表,没有列标题。我有一个25个项目的列表,希望将其分配为数据表的列标题(它们的顺序已经正确)。我不知道如何使用熊猫有效地做到这一点。任何建议都很好!
谢谢。
您可以columns直接直接分配给该属性。
columns
>>> import pandas >>> # create three rows of [0, 1, 2] >>> df = pandas.DataFrame([range(3), range(3), range(3)]) >>> print df 0 1 2 0 0 1 2 1 0 1 2 2 0 1 2 >>> my_columns = ["a", "b", "c"] >>> df.columns = my_columns >>> print df a b c 0 0 1 2 1 0 1 2 2 0 1 2
您还可以分配索引以完成类似的操作
>>> df.index = ["row1", "row2", "row3"] >>> print df a b c row1 0 1 2 row2 0 1 2 row3 0 1 2