Closed
Description
Pandas version checks
-
I have checked that this issue has not already been reported.
-
I have confirmed this bug exists on the latest version of pandas.
-
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
df = DataFrame({"a": [1.5, 2, 3]})
arr_a = get_array(df, "a")
view = df[:]
df.replace(to_replace=[1.5], value=15.5, inplace=True)
print(arr_a)
Same with to_replace=1.5
Issue Description
arr_a should not get changed
the scalar case is addressed by #50918
Expected Behavior
see above
Installed Versions
Replace this line with the output of pd.show_versions()