1
我有以下結構的數據幀:如何計算串聯對象(熊貓)裏面的數據幀的平均值?
df.columns
Index(['first_post_date', 'followers_count', 'friends_count',
'last_post_date','min_retweet', 'retweet_count', 'screen_name',
'tweet_count', 'tweet_with_max_retweet', 'tweets', 'uid'],
dtype='object')
裏面鳴叫系列,每個小區是一個包含所有鳴叫的用戶的另一個數據幀。
df.tweets[0].columns
Index(['created_at', 'id', 'retweet_count', 'text'], dtype='object')
我想在鳴叫每個用戶的進行計算。
例如,我怎樣才能找到每個用戶的轉推的平均數量和最大轉推的推文?
使用[DataFrame.groupby(HTTPS://pandas.pydata .ORG /大熊貓-文檔/穩定/生成/ pandas.DataFrame.groupby.html) –