We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modin.__version__
import pandas import numpy as np from modin.pandas.test.utils import test_data from modin.pandas.test.test_series import create_test_series s_modin, s_pandas = create_test_series(test_data["dense_nan_data"]) rows_number = len(s_modin.index) level_0 = np.random.choice([x for x in range(10)], rows_number) level_1 = np.random.choice([x for x in range(10)], rows_number) index = pandas.MultiIndex.from_arrays([level_0, level_1]) s_modin.index = index s_pandas.index = index print("s_modin.all(level=0).index", s_modin.all(level=0).index) # Int64Index([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int64') print("s_pandas.all(level=0).index", s_pandas.all(level=0).index) # Int64Index([1, 5, 8, 2, 4, 7, 9, 3, 6, 0], dtype='int64') print("s_modin.any(level=0).index", s_modin.any(level=0).index) # Int64Index([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int64') print("s_pandas.any(level=0).index", s_pandas.any(level=0).index) # Int64Index([1, 5, 8, 2, 4, 7, 9, 3, 6, 0], dtype='int64') print("s_modin.mad(level=0).index", s_modin.mad(level=0).index) # Int64Index([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int64') print("s_pandas.mad(level=0).index", s_pandas.mad(level=0).index) # Int64Index([1, 5, 8, 2, 4, 7, 9, 3, 6, 0], dtype='int64')
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
System information
modin.__version__
): 0.7.3+197.g8602fc0Describe the problem
Source code / logs
The text was updated successfully, but these errors were encountered: