Learn R Programming

translateSPSS2R (version 1.0.0)

xpssEndIf: Ends a DO IF - END IF subset

Description

R implementation of the SPSS END IF argument.

Usage

xpssEndIf(x)

Arguments

x
a (non-empty) data.frame or input data of class "xpssFrame".

Value

Output is the original dataset.

Details

xpssEndIf determines the end of the analysis based on logical conditions via xpssDoIf. xpssEndIf merge the excluded data with the actual dataset, after xpssDoIf subsetted the data. All changes which were made until xpssEndIf will be taken over, the excluded data will remain untouched!

NOTE: For temporary case selection, specify xpssTemporary before xpssDoIf.

Examples

Run this code
data(fromXPSS)

temp <- xpssDoIf(x=fromXPSS, cond = "V3 == 1")

temp <- xpssRecode(x=temp,variables="V5",rec="lo:78 = 1; else = 2")

temp <- xpssEndIf(x=temp)

Run the code above in your browser using DataLab