-
Notifications
You must be signed in to change notification settings - Fork 326
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
Support Series.median() #2566
Support Series.median() #2566
Conversation
About the doc, if the resource is limited, you can submit a commit, it's well guaranteed by the CI. BTW, I saw the failure: https://dev.azure.com/mars-project/mars/_build/results?buildId=1864&view=logs&jobId=435ca956-9126-505f-566f-fff31072e2ba&j=435ca956-9126-505f-566f-fff31072e2ba&t=456eced4-5f9f-56bd-1d85-873f530e72f3 , now we use |
new commit added |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
What do these changes do?
Support Series.median() plus testings
Related issue number
Resolves #1345
Series.median() is mainly supported by
tensor.statistics.median
based ontensor.statistics.quantile
In addition to the parameters from
tensor.statistics.median
, I also addedskipna
for handling nan values just like pandas series()4 test cases work fine.
However, I had trouble when Building Documentations.
I ran
make html
then
It seems my VM ubuntu suffers from its 8 GB memory. Is there a good way to solve this?