trim_01: Trim Values So They Are Between 0 and 1

View source: R/trim_01.R

trim_01R Documentation

Trim Values So They Are Between 0 and 1

Description

Trim a vector so that all values are greater than 0 and less than 1.

Usage

trim_01(x)

Arguments

x

A numeric vector. Can be an rvec.

Details

If

  • min is lowest element of x that is higher than 0, and

  • max is the highest element of x that is lower than 1, then trim_01()

  • shifts all elements of x that are lower than min upwards, so that they equal min, and

  • shifts all elements of x that are higher than max downwards, so that they equal max.

Value

A trimmed version of x

See Also

  • logit(), invlogit() Logit transformation

Examples

x <- c(1, 0.98, -0.001, 0.5, 0.01)
trim_01(x)

poputils documentation built on Sept. 14, 2024, 9:07 a.m.