xorbitsai / xorbits

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

BUG: Series set item failed #693

Closed ChengjieLi28 closed 10 months ago

ChengjieLi28 commented 10 months 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

series = pd.Series[1,2,3]
series[2] = 5

print(series)