xorbitsai / xorbits

Scalable Python DS & ML, in an API compatible & lightning fast way.
https://xorbits.readthedocs.io
Apache License 2.0
1.11k stars 67 forks source link

BUG: series iloc setitem failed #712

Open ChengjieLi28 opened 1 year ago

ChengjieLi28 commented 1 year ago

Note that the issue tracker is NOT the place for general support. For discussions about development, questions about usage, or any general questions, contact us on https://discuss.xorbits.io/. Reproduce:

import xorbits.pandas as pd
s = pd.Series([3, 1, 2, 3, 4, np.nan], name='s')
s.iloc[2] = 5555

_mars series can do these.