我在选择要在 Pandas.DataFrame.Groupby.agg 中插入哪些列时遇到问题。
这是获取和准备数据的代码。
# Data Collecting and library import
from pandas_datareader import data
import pandas as pd
symbol = 'AAPL'
source = 'yahoo'
start_date = '2018-01-01'
end_date = '2019-04-24'
stock = data.DataReader(symbol, source, start_date, end_date)
new_range = pd.date_range(start="2018-1-1", end="2019-12-30")
stock = stock.reindex(new_range).fillna(method='ffill').fillna(method='bfill')
stock['Day'] = stock.index.weekday_name
stock['Month'] = stock.index.month_name()
stock['Size'] = stock['High'].apply(lambda x: 'Big' if x>175 else 'Small')
stock['Other Size'] = stock['Low'].apply(lambda x: 'Big' if x>175 else 'Small')
stock.round(2)
stock.head(10)
这导致
到目前为止我所做的是
stock.groupby(['Day', 'Month']).agg(
{
'High' : [min, 'mean', max],
'Low' : [min, 'mean', max],
'Open' : 'mean',
'Size' : lambda x: x.value_counts().index[0],
# Other_non_numeric : lambda x: x.value_counts().index[1],
# Other_columns : 'mean'
}
).round(2)
这导致:
问题是:
如何包含其他非数字列?
如何在字典中包含其他未确定的列并将方法设置为“平均值”?
泛舟湖上清波郎朗
相关分类