私はDataFrameにある時系列データの拡張Zスコアを計算したいが、複数の列の平均と標準偏差を使ってデータを標準化したいが、別々に各列内の平均および標準偏差ではなく、私はgroupbyとDataFrame.expandingの組み合わせを使いたいと思っていますが、私はそれを理解できないようです。ここではいくつかのサンプルデータです: import pandas as pd
import num
複数のgroupby出力を比較する方法は何でしょうか。 >>> tmp1
account place balance type
0 A A1 10 B1
1 A A1 20 B1
2 A A1 30 B1
3 A A1 10 B4
4 A A1 20 B4
5 A A1 10 B5
6 A A1 10 B6
7 B A2 10 B7
8
は、私はその後、numberで今 index = pd.MultiIndex.from_arrays([list("ABCD"),("one","one","two","two")],names=['letter','number'])
testdf.columns = index
testdf
Out[44]:
letter A B C D
number on