-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
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
Some functions implemented through reduction operation arise exceptions #1953
Comments
for reduction operation Signed-off-by: Igoshev, Yaroslav <[email protected]>
for reduction operation Signed-off-by: Igoshev, Yaroslav <[email protected]>
Signed-off-by: Anatoly Myachev <[email protected]>
Signed-off-by: Anatoly Myachev <[email protected]>
* TEST-#2033: speed up test_series.py Signed-off-by: Anatoly Myachev <[email protected]> * TEST-#2033: fix kurtosis test Signed-off-by: Anatoly Myachev <[email protected]> * TEST-#2033: refactor test for #1953 Signed-off-by: Anatoly Myachev <[email protected]>
…ct#1960) for reduction operation Signed-off-by: Igoshev, Yaroslav <[email protected]>
* TEST-modin-project#2033: speed up test_series.py Signed-off-by: Anatoly Myachev <[email protected]> * TEST-modin-project#2033: fix kurtosis test Signed-off-by: Anatoly Myachev <[email protected]> * TEST-modin-project#2033: refactor test for modin-project#1953 Signed-off-by: Anatoly Myachev <[email protected]>
Should these functions be working? I noticed today that e.g. in this test, Modin defaults to pandas for median, skew, std, var, and sem. Taking the "median" version of that test: import modin.pandas as pd
arrays = [["1", "1", "2", "2"], ["1", "2", "3", "4"]]
data = [[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]]
modin_df = pd.DataFrame(data, index=arrays)
modin_df.median(level=0)
|
@mvashishtha , yes, they are working but in case |
Describe the problem
Some functions (such as
median
,skew
,std
,var
,sum
,prod
) arise an exception when level specified.Source code / logs
The text was updated successfully, but these errors were encountered: