gpluck_compute_percentile_range_v2: Compute Percentile and Range if Unknown Version 2

View source: R/pdf.R

gpluck_compute_percentile_range_v2R Documentation

Compute Percentile and Range if Unknown Version 2

Description

This function computes percentile, performance range from a provided numeric vector .x and returns the value according to the specified scoring type.

Usage

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,
  ...
)

Arguments

.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.

Value

Returns the score with the specified type.


jtrampush/npsych.data documentation built on Feb. 25, 2025, 12:30 a.m.