私は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
Hierarchical Series
しかし失敗しました。動的に拡大する方法を教えてもらえますか?