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.
私はパンダバージョン0.12.0を使用しています。そして、コピーされたシリーズのインデックスをシフトする次のコード:
import pandas as pd series = pd.Series(range(3)) series_copy = series.copy() series_copy.index += 1
今アクセスseriesすると、インデックスもシフトされます。なんで?
series