Learn R Programming

multicon (version 1.6)

ipsatize: Ipsatize Data

Description

Returns a data.frame after ipsatizing (standardizing the rows)

Usage

ipsatize(set)

Arguments

set
A data.frame to be ipsatized

Value

Returns a data.frame of the same dimensions as 'set' that contains ipsatized values

Details

In research it is frequently desired to standardize the rows of a data.frame rather than the columns. This function does just that.

See Also

reQ

Examples

Run this code
data(bfi.set)
#Lets ipsatize (within-person standardize) the Big Five Inventory (BFI)
head(bfi.set)
ip.bfi.set <- ipsatize(bfi.set)
head(ip.bfi.set)

Run the code above in your browser using DataLab