Closed
Description
System information
- Linux Ubuntu 19.10
- Modin 0.7.3
- Python 3.7.7
Problem:
When trying to use .iloc to assign a new value there are no changes taking place.
I already left a comment on the issue #147 but it's already closed and I wasn't sure that you can see it.
Code to reproduce:
import modin.pandas as pd #dask
test = pd.DataFrame({'first': range(10)})
test['first'].iloc[0] = 500
#or test['first'].iloc[[0, 1, 2]] = 500
print(test) # there is no changes