Learn R Programming

SqlRender (version 1.19.1)

camelCaseToSnakeCaseNames: Convert the names of an object from camel case to snake case

Description

Convert the names of an object from camel case to snake case

Usage

camelCaseToSnakeCaseNames(object)

Value

The same object, but with converted names.

Arguments

object

The object of which the names should be converted

Examples

Run this code
x <- data.frame(conceptId = 1, conceptName = "b")
camelCaseToSnakeCaseNames(x)

Run the code above in your browser using DataLab