Learn R Programming

psych (version 1.8.4)

dummy.code: Create dummy coded variables

Description

Given a variable x with n distinct values, create n new dummy coded variables coded 0/1 for presence (1) or absence (0) of each variable. A typical application would be to create dummy coded college majors from a vector of college majors. By default, NA values of x are returned as NA (added 10/20/17)

Usage

dummy.code(x,na.rm=TRUE)

Arguments

x

A vector to be transformed into dummy codes

na.rm

If TRUE, return NA for all codes with NA in x

Value

A matrix of dummy coded variables

Details

When coding demographic information, it is typical to create one variable with multiple categorical values (e.g., ethnicity, college major, occupation). dummy.code will convert these categories into n distinct dummy coded variables.

If using dummy coded variables as predictors, remember to use n-1 variables.

Examples

Run this code
# NOT RUN {
new <- dummy.code(sat.act$education)
new.sat <- data.frame(new,sat.act)
round(cor(new.sat,use="pairwise"),2)

# }

Run the code above in your browser using DataLab