Learn R Programming

SqlRender (version 1.19.1)

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

Description

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

Usage

snakeCaseToCamelCaseNames(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(concept_id = 1, concept_name = "b")
snakeCaseToCamelCaseNames(x)

Run the code above in your browser using DataLab