Home > OS >  how i can calculate the quantile of a difference of each pair in R using dplyr?
how i can calculate the quantile of a difference of each pair in R using dplyr?

Time:07-19

Let's say i have data frame in R that looks like this :


var2 = c(rep("A",3),rep("B",3),rep("C",3),rep("D",3),rep("E",3),rep("F",3),
         rep("H",3),rep("I",3))

y2 = rnorm(24)
data2 = tibble(var2,y2)%>           
  • Related