nameObject: This quick little function is a means for me to create the...

Description Usage Arguments Value Examples

View source: R/sourceSHAPE.R

Description

This quick little function is a means for me to create the strings of environments and subsequently extract information back out.

Usage

1
nameObject(func_inString, func_inPrefix, func_splitStr = FALSE)

Arguments

func_inString

This is the vector of numeric, or otherwise unique ID values for the environments to be created. Or if funcSplit == TRUE, then these are the names to be split.

func_inPrefix

This is the character string used as a prefix to identify environment objects

func_splitStr

A logical toggle of whether you are building or splitting the name

Value

A vector of character string of length equal to input.

Examples

1
2
3
# Returns a standard named string
test_objectNames <- nameObject(1:10, "testObject")
nameObject(test_objectNames, "testObject", func_splitStr = TRUE)

rSHAPE documentation built on July 19, 2019, 5:05 p.m.

Related to nameObject in rSHAPE...