Seriesのデータをマージしたいと思います。しかし結果として、これらのデータは3つに分割された。これらのデータを1つにマージするにはどうすればよいですか? (のpython3のjupyterノート)パンダのデータをどのようにマージできますか?
fp_price = pd.Series(data)
keep = []
for i in fp_price:
fp_price_merge = i
keep.append(fp_price_merge)
print(keep)
結果
[487832.87560916983, 488448.86992150272, 490797.3482372716,
490127.78920212726, 490493.25684214354, 490632.19034193602]
[481897.10423319356, 482361.70278453565, 482144.11241496605,
481998.03776126896, 482209.0344832759, 482318.84407537803]
[483650.51656619791, 483357.08254157269, 483476.66114698362,
483627.19449776667, 483503.16349747358, 483547.58143689478]
は、あなたのデータを表示しますか?またはfp_price? – Wen