Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upRoadmap #1
Comments
This comment has been minimized.
This comment has been minimized.
I think it makes sense for For methods that are already in
Okay, that sounds good. I've given you push access. Alternatively, if you'd like to have your repo be the main one instead of this one, that would be fine with me. |
LukeMathWalker
added
Enhancement
Help wanted
Good first issue
labels
Sep 29, 2018
LukeMathWalker
referenced this issue
Oct 25, 2018
Open
Implement `scalar_min` and `scalar_max` for `A: Ord` #512
This comment has been minimized.
This comment has been minimized.
|
Once #9 gets merged I think we are in a good position to officially release version 0.1.0 on crates.io - what do you think? @jturner314 |
This comment has been minimized.
This comment has been minimized.
|
I agree. By the way, I recently came across Julia's |
This comment has been minimized.
This comment has been minimized.
|
Added a bunch of tests to #9 and merged What do we need to do in order to release on crates.io? |
This comment has been minimized.
This comment has been minimized.
|
Yay!
Ideally, we'd eliminate the It would also be good to merge #12 and #13 before releasing. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
|
This comment has been minimized.
This comment has been minimized.
|
|
This comment has been minimized.
This comment has been minimized.
|
I have drafted a tentative roadmap with the features I'd like to add in the next release - please edit it with your comments and suggestions @jturner314 |
This comment has been minimized.
This comment has been minimized.
|
The roadmap looks good to me. I'm not familiar with the applications of higher order central moments (I'd usually use a histogram instead), but I don't mind adding them if people find them useful. By the way, I invited you as an owner for the |
This comment has been minimized.
This comment has been minimized.
|
Somehow I didn't receive an email notification, but the invite was on my dashboard - accepted it! The main objective in that area is getting kurtosis and skewness, and given the kind of computation required to achieve that it makes sense to also roll out higher order central moments I'd say :) |
LukeMathWalker commentedSep 16, 2018
•
edited by jturner314
In terms of functionality, the mid-term end goal is to achieve feature parity with the statistics routine in
numpy(here) andJulia StatsBase(here).For version 0.2.0:
partialordversion forquantiles(usingMaybeNan?);mergemethod;For version 0.1.0:
max/nanmax(@jturner314)min/nanmin(@jturner314)quantile/nanquantile(it includespercentile/nanpercentileas a special case) (@LukeMathWalker & @jturner314)correlation-methods:cov(@LukeMathWalker) -One last fix to be made (#3)[On hold for now]corrcoef(@LukeMathWalker - #5)histogram-methods (@LukeMathWalker - #9)