-
Notifications
You must be signed in to change notification settings - Fork 126
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
Percentiles for describe #454
Percentiles for describe #454
Conversation
lib/explorer/data_frame.ex
Outdated
@@ -4443,10 +4444,10 @@ defmodule Explorer.DataFrame do | |||
""" | |||
@doc type: :single | |||
@spec describe(df :: DataFrame.t()) :: DataFrame.t() | |||
def describe(df) do | |||
def describe(df, percentiles \\ @default_percentiles) do |
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.
Let's make this an option, as we will likely have other percentiles in the future!
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.
Note we only need to make it an option here. It does not have to be an option in the behaviour.
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.
💚 💙 💜 💛 ❤️ |
Add support for large integers
No description provided.