Description Usage Arguments Value Examples
This function will input
1 | drop1_quants(x, dfDropPoints)
|
x |
a column of data |
dfDropPoints |
the observation to be dropped |
orderedObs a vector containing the entered data, in ascending order, with the specified observation dropped
probabilityLevels a vector containing the probability level for each ordered observation, calculated with the specified observation dropped
stndNormQuant the standard normal quantile, used for creating a QQ-Plot, calculated with the specified observation dropped
1 2 3 4 5 6 | x <- 1:10
qq <- q_quantiles(x)
qd <- qq$stndNormQuant[1] # the observation to be dropped
xd <- qq$orderedObs[1]
dfDrop <- data.frame(xj = 1325, qj = qd)
drop1_quants(x = x, dfDropPoints = dfDrop)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.