camelCaseToSnakeCaseNames {SqlRender} | R Documentation |
Convert the names of an object from camel case to snake case
camelCaseToSnakeCaseNames(object)
object |
The object of which the names should be converted |
The same object, but with converted names.
x <- data.frame(conceptId = 1, conceptName = "b")
camelCaseToSnakeCaseNames(x)