2
周
天均值以下代碼如何找到基於
test_df['Started'] = pd.to_datetime(test_df['Started'])
test_df['day count'] = test_df['Started'].apply(lambda x: x.strftime('%A'))
test_day_count = test_df['day count'].value_counts()
print(test_day_count)
返回
Thursday 25
Friday 19
Saturday 13
這些值開始對天的測試次數。我想查找一週中每天的平均()測試分數。
我試圖與其中的成績位於[]
test_df['Started'] = pd.to_datetime(test_df['Started'])
test_df['day count'] = test_df['Started'].apply(lambda x:x.strftime('%A'))
test_day_count = test_df['day count'].value_counts().mean(test_df['marks'])
print(test_day_count)
我得到的錯誤 類型錯誤的科拉姆的名稱一起添加均值與第三行:「系列」的對象是可變的,因此,他們不能被散列
你也可以使用'.dt.weekday_name',而不是'.DT。的strftime( '%A')'。 – root