xpssFilterOff: Ends a FILTER subset

Description Usage Arguments Details Value Author(s) Examples

View source: R/xpssFilterOff.R

Description

R implementation of the SPSS FILTER OFF Function.

Usage

1

Arguments

x

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

Details

xpssFilterOff terminates the filtering and merges the excluded data with the actual subset of the dataset.

Important:
All changes are used on the complete dataset, except for the function beeing an data exploring or data analyzing function.

Type of Function Example Function Dataset Usage
Data Management xpssSelectIf Uses the complete dataset
Data Modifing xpssRecode Uses the complete dataset
Data Exploring xpssDescriptives Uses the working dataset only
Data Analyzing xpssRegression Uses the working dataset only

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

Value

Output is the original dataset.

Author(s)

Andreas Wygrabek

Examples

1
2
3
4
5
6
7
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)

Example output



translateSPSS2R documentation built on May 30, 2017, 4:31 a.m.