Open bkamins opened 5 years ago
JuliaLang/julia#33835 I think passing dims as a function to quantile makes sense and is consistent with all other basic stats functions. Did you happen to make a PR @bkamins
Currently I am swamped with trying to push DataFrames.jl v1.0 out. So feel free to make a PR if you wish.
Currently
quantile
does not supportAbstractArrays
except forAbstractVectors
. The reason is that we usecollect
for a general iterable, which retains its dimensionality.You can write
to get what you want but I would recommend supporting
quantile
for general arrays. If we agree that we want this feature I can propose a PR.