gpluck_compute_percentile_range | R Documentation |
Computes percentile, performance range from vector .x and returns the score with the specified type.
gpluck_compute_percentile_range(
.x,
.score = NA,
.score_type = c("z_score", "scaled_score", "t_score", "standard_score"),
percentile = NA,
range = NA,
pct1 = NA,
pct2 = NA,
pct3 = NA,
z = NA,
...
)
.x |
A numeric vector. |
.score |
The value of scores to be calculated according to the scoring type. Default: NA |
.score_type |
Type of scoring- it can be z_score, scaled_score, t_score or standard_score. Default: c("z_score", "scaled_score", "t_score", "standard_score") |
percentile |
Percentile of x. Default: NA |
range |
Difference between the highest and lowest percentiles. Default: NA |
pct1 |
First percentile. Default: NA |
pct2 |
Second percentile. Default: NA |
pct3 |
Third percentile. Default: NA |
z |
Z-scores. Default: NA |
... |
Other arguments not in use. |
Values are calculated from vector x according to the specified scoring type.
Returns the score with the specified type.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.