This question already has answers here:
assigning column names to a pandas series
                                
                                    (3个答案)
                                
                        
                                2年前关闭。
            
                    
输入值

 Fruit
    Apple   55
    Orange  43


输出量

Fruit   Count
Apple   55
Orange  43


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

最佳答案

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

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

关于python - 我在数据框中有两列,一列具有列名,另一列没有列名,如何在python pandas上为它们命名? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51592274/

10-12 23:13