我有一个Hierarchical Series
如下
data=pd.Series(np.random.randn(10),
index=[['a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', 'd', 'd'],
[1, 3, 4, 1, 2, 3, 1, 2, 2, 3]])
我想在其中插入一个新系列data
t_series = pd.Series(np.random.randn(10))
我努力了
data['e'] = t_series
但是失败了,请问soemone 可以告诉我如何Hierarchical Series
动态放大一个吗?