我是编程和python的新手,并且在列的命名方面遇到了问题。我已经尝试了不同的方法,但到目前为止还没有成功。为了进一步准备和可视化我的数据,我想命名新创建的列,其中包括每个当前的总和' Summe'。我该怎么做?在哪里?
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
tweets=pd.read_csv('numTweets.csv', names=['Zeitstempel','Waehrung','AnzahlTweets'])
tweets1=tweets.groupby('Waehrung').AnzahlTweets.sum()
tweets1.sort_index()[:10]