Description Usage Arguments Details Value See Also Examples
View source: R/percentify_random.R
This function is a wrapper around percentify
. Given a width`` and a
n', it will generate a number of random interval with fixed width.
1 | percentify_random(data, var, width, n = 10)
|
data |
A data.frame or tibble, |
var |
Variable to do grouping by as string or symbol. |
width |
Numerical values for the width of the interval. Must be between 0 and 1. |
n |
Integer, number of intervals to create. |
There is a ggplot2::autoplot()
to visualize the the percentile ranges.
percentile grouped tibble
Other percentile samplers: autoplot.percentiled_df
,
percentify_cut
,
percentify_max
,
percentify_min
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | library(dplyr)
library(broom)
set.seed(1234)
percent_mtcars <- percentify_random(mtcars, mpg, 0.4, 10)
percent_mtcars
summarize(percent_mtcars,
mean_hp = mean(hp),
mean_wt = mean(wt),
n_obs = n()
)
percent_mtcars %>%
group_modify(~tidy(lm(disp ~ wt + cyl, data = .x)))
library(ggplot2)
autoplot(percent_mtcars)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.