suppose I have a vector sample
x <-c (2,3,68,253,1,35,3,35,01,24,04,36,254,2,28,12,4,54,66,775,6,45,33,68,71)
I know that if I do the command:
quantile (x, 0.75)
the R returns me the percentile P75 = 66.
but I would like to know, for example, in which percentile the value element 35 of my set x is located?
Would R answer such a question? is there an inverse of the quantile command?