Learn R Programming

Ecfun (version 0.2-0)

createX2matchY: Create X to match Y

Description

Return a default object of class index2class(max(classIndex(x), classIndex(y))) and length = length(y).

For example, suppose class(x) == 'numeric', for which classIndex = 4. If class(y) = 'integer', then an object of class 'numeric' is returned. However, if class(y) = 'character', then an object of class 'character' is returned.

Usage

createX2matchY(x, y)

Arguments

x, y

objects of possibly different classes and lengths.

Value

A vector of the same length as y whose class is index2class(max(classIndex(x), classIndex(y))).

See Also

interpPairs

Examples

Run this code
# NOT RUN {
##
## 1.  NULL 
## -
null <- createX2matchY(NULL, NULL)
# check 
# }
# NOT RUN {
all.equal(null, NULL)
# }
# NOT RUN {
##
## 2.  logical 
##
lgcl3 <- createX2matchY(NULL, 
           c(FALSE, TRUE, FALSE))

# check 
# }
# NOT RUN {
all.equal(lgcl3, logical(3))
# }
# NOT RUN {
##
## 3.  integer
##
int3 <- createX2matchY(integer(0), 
           c(FALSE, TRUE, FALSE))
# check 
# }
# NOT RUN {
all.equal(int3, integer(3))
# }
# NOT RUN {
##
## 4.  list -> character
##
ch3 <- createX2matchY(integer(0), 
         list(a=1, b=2, c=3))
# check 
# }
# NOT RUN {
all.equal(ch3, character(3))
# }

Run the code above in your browser using DataLab