fslaborg / Deedle

Easy to use .NET library for data and time series manipulation and for scientific programming
http://fslab.org/Deedle/
BSD 2-Clause "Simplified" License
937 stars 195 forks source link

Add quantile to describe #442

Closed alexpantyukhin closed 6 years ago

zyzhu commented 6 years ago

You need to put describe function below quantile function. Just reorder it and it will build.

As for display. pandas describe follows the logic order count, mean, std, min, 25%, 50%, 75%, max

It's very easy to read for researchers. You may reorder the output series keys like that.

alexpantyukhin commented 6 years ago

I'm still newbie in f# and can not realize why my changes make compilation error :)

zyzhu commented 6 years ago

It's just by design functions and modules has to be ordered in F# to avoid cyclic dependencies. https://fsharpforfunandprofit.com/posts/recipe-part3/ https://fsharpforfunandprofit.com/posts/cyclic-dependencies/

alexpantyukhin commented 6 years ago

Thank you very much! I will lean it.