I am totally new to programming and python and got a problem regarding the naming of a column. I have already tried different approaches but so far without success. For further preparation and visualization of my data I want to name the newly created column which includes the sum of each curreny 'Summe'. How and where do I do that?
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]