| gpluck_compute_percentile_range_v2 | R Documentation | 
This function computes percentile, performance range from a provided numeric vector .x and returns the value according to the specified scoring type.
gpluck_compute_percentile_range_v2(
  .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.  | 
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.