CJ documentation has the line regarding sorted paramter
sorted logical. Should the input order be retained?
The explanation is the opposite of the actual setting. If you want the input order to be retained, you set sorted = FALSE.
CJ(c('c','b','a'), c('xx','zz','yy'), sorted = TRUE)
will have 'a' before 'b'
CJ documentation has the line regarding sorted paramter
The explanation is the opposite of the actual setting. If you want the input order to be retained, you set sorted = FALSE.
CJ(c('c','b','a'), c('xx','zz','yy'), sorted = TRUE)will have 'a' before 'b'