I have the following df:
group = rep(seq(1,3),30)
variable = runif(90, 5.0, 7.5)
df = data.frame(group,variable)
I need to i) Define quantile by groups, ii) Assign each person to her quantile with respect to her group.
Thus, the output would look like:
id group variable quantile_with_respect_to_the_group
1 1 6.430002 1
2 2 6.198008 3
.......
There is a complicated way to do it with loops and cut function over each groups but it is not efficient at all. Does someone know a better solution ?
Thanks !
Another version with dplyr/findInterval
library(dplyr)
df %>%
group_by(group) %>%
mutate(Quantile = findInterval(variable,
quantile(variable, probs=0:4/4)))
In data.table
:
library(data.table)
setDT(df)[,quantile := cut(variable, quantile(variable, probs = 0:4/4),
labels = FALSE, include.lowest = TRUE), by = group]
>head(df)
# group variable quantile
# 1: 1 6.103909 2
# 2: 2 6.511485 3
# 3: 3 5.091684 1
# 4: 1 6.966461 4
# 5: 2 6.613441 4
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With