R/HelperFunctions.R
camelCaseToSnakeCaseNames.Rd
Convert the names of an object from camel case to snake case
camelCaseToSnakeCaseNames(object)
The same object, but with converted names.
x <- data.frame(conceptId = 1, conceptName = "b")
camelCaseToSnakeCaseNames(x)
#> concept_id concept_name
#> 1 1 b