Learn R Programming

bit (version 4.5.0)

copy_vector: Copy atomic R vector

Description

Creates a true copy of the underlying C-vector -- dropping all attributes -- and optionally reverses the direction of the elements.

Usage

copy_vector(x, revx = FALSE)

Value

copied R vector

Arguments

x

an R vector

revx

default FALSE, set to TRUE to reverse the elements in 'x'

Details

This can be substantially faster than duplicate(as.vector(unclass(x)))

See Also

clone, still.identical, reverse_vector

Examples

Run this code
x <- factor(letters)
y <- x
z <- copy_vector(x)
still.identical(x,y)
still.identical(x,z)
str(x)
str(y)
str(z)

Run the code above in your browser using DataLab