-
Notifications
You must be signed in to change notification settings - Fork 44
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
WIP Progress on incorporating StatsBase into statistics. #31
WIP Progress on incorporating StatsBase into statistics. #31
Conversation
Take inspiration from Pkg.jl to ensure the package is loaded rather than the Statistics stdlib module. Test Julia 1.2 and 1.3 (tests fail on 1.0)
@nalimilan this is ready for a review. My impression is that not everything has to be 100% perfect for this PR since it's being merged into your PR, and I would bet rebasing there is a high cost of keeping everything up to date. The Thanks! |
src/Statistics.jl
Outdated
@@ -1,5 +1,4 @@ | |||
# This file is a part of Julia. License is MIT: https://julialang.org/license | |||
|
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.
Revert this.
@@ -165,24 +165,6 @@ end | |||
# | |||
############################# | |||
|
|||
""" |
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.
Maybe keep these here for now. That reduces the diff, which makes things less messy, and we may want to move quantile
to this file (or a separate file) later.
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.
I tried to do this but can't since this extends methods in statistics and we include
scalarstats.jl
at the top.
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.
OK. Then remove the heading above.
@@ -1,8 +1,8 @@ | |||
name = "Statistics" | |||
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" |
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.
I think you need to keep this to get CI to pass. We'll remove it later.
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.
I need to delete it in order for a Revise-based workflow to work, see my discourse question here.
Sorry I couldn't give better feedback, this is tough. Not all tests pass. The
So it's no surprise that isn't working. Though I don't understand what's going on. Can you help? |
Sorry I missed your question. The |
Isn't this PR missing a large portion of |
It's marked as WIP. And see also https://github.com/JuliaLang/Statistics.jl/pull/2. |
1277ff9
to
71cde77
Compare
I've moved the changes from this PR to https://github.com/JuliaLang/Statistics.jl/pull/2. |
No description provided.