mars-project / mars

Mars is a tensor-based unified framework for large-scale data computation which scales numpy, pandas, scikit-learn and Python functions.
https://mars-project.readthedocs.io
Apache License 2.0
2.7k stars 325 forks source link

Support {DataFrame,Series}.equals #1340

Open wjsi opened 4 years ago

wjsi commented 4 years ago

Support {DataFrame,Series}.equals. pandas docs see https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.equals.html and https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.equals.html

qinxuye commented 4 years ago

Maybe just treat equals as df.eq(other).all().

gowrijsuria commented 3 years ago

Hi, I have created a PR(#2366 ) for this issue.