Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はpandasPythonで使用しています。単一のDataFrameに連結したい日付でインデックス付けされた複数のシリーズがありますが、日付が欠落しているなどの理由でシリーズの長さが異なります。一致する日付を一致させたいのですが、データが欠落している場合補間するか、前の日付などを使用します。これを行う最も簡単な方法は何ですか?
pandas
シリーズが dictdataにある場合は、次のことだけを行う必要があります。
data
frame = DataFrame(data)
これにより、物事が DataFrame に入れられ、すべての日付が結合されます。値を前方に入力したい場合は、 を呼び出すことができますframe = frame.fillna(method='ffill')。
frame = frame.fillna(method='ffill')