I want to select rows from a.xdf
file based on a categoryid
only if vector b
has those category ids
in it.
rxDataStep(inData = "a.xdf", outFile = "final.xdf",rowSelection= ?,overWrite=TRUE)
Can anyone please help.
I would guess ..., rowSelection=categoryid %in% b, ...
though I do not have Revolution R to test it out.