我在数据框中有两列,一列具有列名,另一列没有列名,如何在python pandas上为它们命名?

时间:2018-07-30 10:48:08

标签: python python-3.x pandas series

输入

import Vue from 'vue';
import Utils from 'modules/Utils'; // I don't want this
var utils = new Utils;             // I don't want this
console.log(utils.array_count(['a','b','c']));

输出

 Fruit 
    Apple   55
    Orange  43

我需要相应地重命名列,请帮助

1 个答案:

答案 0 :(得分:1)

我认为需要通过以下方式将Series转换为DataFrame

df = df.reset_index(name='Count')