-
Notifications
You must be signed in to change notification settings - Fork 4
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
add function to transform sample output_type data to quantile #8
Comments
Noting that some care might need to be taken (and/or assumptions made) to impute quantiles that are not directly translatable from samples. e.g. what if you request a 2.5th and 97.5th quantile but only have 100 samples. Take the midpoint between the 97th and 98th ordered samples? |
r.e. assumptions required to get quantiles, I suggest using R's built-in |
see also issue #11 |
I am proposing that this be an internal (i.e., not exported) function, with the user-facing function being a general-purpose function for converting between output types as in #11. |
A common task to support plotting of sample output_type data could be to transform that data to quantile-format and then plot, so that medians/intervals could be plotted. This is a simple transformation task, given a hub_df with sample data, turn it into quantiles.
The text was updated successfully, but these errors were encountered: