rescale_100: Rescale 1-10 integer to 0-100 numeric.

Description Usage Arguments Author(s) See Also Examples

View source: R/scales.R

Description

Takes vectors representing 10-point likert scales and transforms them to 100-point scales (numeric). Formula: (x-1)*(100/9)

Usage

1

Arguments

var

An integer vector.

Author(s)

Kristian D. Olsen

See Also

rescale_10 for the complement.

Examples

1
2
x <- rescale_100(c(1L, 10L))
identical(x, c(0, 100))

itsdalmo/reporttoolDT documentation built on May 18, 2019, 7:11 a.m.