create.variable.name: Create variable name from string.

Description Usage Arguments Value Examples

View source: R/utilities.R

Description

This function creates a sensible variable name by replacing all non-alphanumeric characters with underscores. This is useful when the string is to be used as a the name of a list element.

Usage

1

Arguments

s

The string to be used as a variable name

Value

The string with non-alphanumeric characters replaced by underscores

Examples

1
2
s <- "a-b"
edf:::create.variable.name(s)

Example output

[1] "a_b"

edf documentation built on May 2, 2019, 8:54 a.m.