Using the quantile() function in a class here is my code so far:
p <- seq(.01,.99,.01)
sample_quantiles <- quantile(act_scores, p)
I am trying to find the quantile associated with the value "26" in the data set, as opposed to the inverse:
sample_quantiles[26]
act_scores. The Error you get would also be helpful.