mars
mars copied to clipboard
Support DataFrame indexing with mars Tensor
Currently the following snippets causes error, which is quite surprising for users coming from Pandas background:
import mars.dataframe as md
import mars.tensor as mt
df = md.DataFrame(mt.random.randn(10, 4))
df.loc[df.index].execute()
It will be nice to support indexing with Mars Tensor as well.
Thank you !
Thanks, will support it ASAP.
Wondering if the issue has been fixed in the newest version?