filesCodedBy.RdFiles coded by a specific set of codes.
filesCodedByAnd(cid,codingTable=c("coding","coding2")) filesCodedByOr(cid,codingTable=c("coding","coding2")) filesCodedByNot(cid,codingTable=c("coding","coding2"))
| cid | an integer vector of code IDs. |
|---|---|
| codingTable | name of coding table. |
filesCodedByAnd returns file IDs which are coded by all codes from cid.
filesCodedByOr returns file IDs which are coded by any code from cid.
filesCodedByNot returns file IDs which are not coded by any code from cid.
a vector of file IDs, with class of "RQDA.vector" and "fileId".
Ronggui HUANG
if (FALSE) { filesCodedByAnd(1:2) ## coded by code 1 and 2 filesCodedByOr(1:2) ## coded by code 1 or 2 filesCodedByNot(1:2) ## coded by codes other than 1 and 2 }