Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

QA: How can I use an object in my global environment to create a new variable in an .xdf file?


View products that this article applies to.

Use the userObjects argument along with the transforms argument to create new variables from objects in your global environment (or other environments in your current search path). 

For example, suppose you would like to estimate a linear model using wage income as the dependent variable, and want to include state-level of per capita expenditure on education as one of the independent variables. We can define a named vector to contain this state-level data as follows: 

educExp <- c(Connecticut=1795.57, Washington=1170.46, Indiana = 1289.66) 

We can then use rxDataStepXdf to add the per capita education expenditure as a new variable using the transforms argument, passing educExp to the userObjects argument as a named list: 

censusWorkers <- file.path(rxGetOption("sampleDataDir"), "censusWorkers.xdf") rxDataStepXdf(inFile = censusWorkers, outFile = "censusWorkersWithEduc", transforms=list(stateEducExpPC=educExp[match(state, names(educExp))]), transformVars="state", userObjects=list(educExp=educExp)) 

The rxGetInfoXdf function reveals the added variable: 

rxGetInfo("censusWorkersWithEduc.xdf",getVarInfo=TRUE) 

This example and other are included in the RevoScaleR User's Guide, accessed by selecting Help - R Manuals (PDF) from the Revolution R Enterprise menu. 

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 3104270
Revision : 1
Created on : 1/7/2017
Published on : 10/29/2015
Exists online : False
Views : 65