mv: Rename an Object

View source: R/mv.R

mvR Documentation

Rename an Object

Description

Rename an object.

Usage

mv(from, to, envir = parent.frame())

Arguments

from

Character scalar giving the source object name

to

Character scalar giving the desination object name

envir

Environment in which to do the rename

Details

This function renames an object by the value of object a to the name b, and removing a.

Value

Invisibly returns the value of the object.

Author(s)

Gregory R. Warnes greg@warnes.net

See Also

rm, assign

Examples

a <- 1:10
a
mv("a", "b")
b
exists("a")

warnes/gdata documentation built on Dec. 5, 2023, 12:20 a.m.