インデックスを結合するだけでなく、「左外部pandas.concat
」結合を行っているようです。私にはバグのようですが、明らかな何かが欠けている可能性があります。
import pandas
import pandas.util.testing as put
ts1 = put.makeTimeSeries()
ts2 = put.makeTimeSeries()[::2]
ts3 = put.makeTimeSeries()[::3]
ts4 = put.makeTimeSeries()[::4]
## to join with union
## these two are of different length!
pandas.concat([ts1,ts2], join='outer', axis = 1)
pandas.concat([ts2,ts1], join='outer', axis = 1)
どうすれば完全なユニオンを取得できますか(パンダドキュメントで join='outer' を使用して主張しているように)
ありがとう。