我有一个多索引数据框,我希望在组内回填缺失值。我目前看到的数据框如下:
df = pd.DataFrame({
'group': ['group_a'] * 7 + ['group_b'] * 3 + ['group_c'] * 2,
'Date': ["2013-06-11",
"2013-07-02",
"2013-07-09",
"2013-07-30",
"2013-08-06",
"2013-09-03",
"2013-10-01",
"2013-07-09",
"2013-08-06",
"2013-09-03",
"2013-07-09",
"2013-09-03"],
'Value': [np.nan, np.nan, np.nan, 9, 4, 40, 18, np.nan, np.nan, 5, np.nan, 2]})
df.Date = df['Date'].apply(lambda x: pd.to_datetime(x).date())
df = df.set_index(['group', 'Date'])
我试图获取一个数据帧来回填组中的缺失值。 像这样:
Group Date Value
group_a 2013-06-11 9
2013-07-02 9
2013-07-09 9
2013-07-30 9
2013-08-06 4
2013-09-03 40
2013-10-01 18
group_b 2013-07-09 5
2013-08-06 5
2013-09-03 5
group_c 2013-07-09 2
2013-09-03 2
我尝试使用pd.fillna('Value', inplace=True)
,但我收到了关于在副本上设置值的警告,因为我发现这与多索引的存在有关。有没有办法让fillna适用于多索引行?另外,理想情况下,我只能将fillna应用于一列,而不是整个数据帧。
对此的任何见解都会很棒。