camelCase | R Documentation |
Syntactic naming functions
camelCase(object, ...)
dottedCase(object, ...)
snakeCase(object, ...)
upperCamelCase(object, ...)
## S4 method for signature 'DFrame'
camelCase(
object,
rownames = FALSE,
colnames = TRUE,
mcols = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'Matrix'
camelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
## S4 method for signature 'Ranges'
camelCase(object, names = FALSE, mcols = TRUE, metadata = TRUE, strict = TRUE)
## S4 method for signature 'SummarizedExperiment'
camelCase(
object,
rownames = FALSE,
colnames = TRUE,
assayNames = TRUE,
rowData = TRUE,
colData = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'Vector'
camelCase(object, names = TRUE, mcols = TRUE, metadata = TRUE, strict = TRUE)
## S4 method for signature 'atomic'
camelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'data.frame'
camelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
## S4 method for signature 'factor'
camelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'list'
camelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'matrix'
camelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
## S4 method for signature 'DFrame'
dottedCase(
object,
rownames = FALSE,
colnames = TRUE,
mcols = TRUE,
metadata = TRUE
)
## S4 method for signature 'Matrix'
dottedCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'Ranges'
dottedCase(object, names = FALSE, mcols = TRUE, metadata = TRUE)
## S4 method for signature 'SummarizedExperiment'
dottedCase(
object,
rownames = FALSE,
colnames = TRUE,
assayNames = TRUE,
rowData = TRUE,
colData = TRUE,
metadata = TRUE
)
## S4 method for signature 'Vector'
dottedCase(object, names = TRUE, mcols = TRUE, metadata = TRUE)
## S4 method for signature 'atomic'
dottedCase(object, names = TRUE)
## S4 method for signature 'data.frame'
dottedCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'factor'
dottedCase(object, names = TRUE)
## S4 method for signature 'list'
dottedCase(object, names = TRUE)
## S4 method for signature 'matrix'
dottedCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'atomic'
snakeCase(object, names = TRUE)
## S4 method for signature 'data.frame'
snakeCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'factor'
snakeCase(object, names = TRUE)
## S4 method for signature 'list'
snakeCase(object, names = TRUE)
## S4 method for signature 'matrix'
snakeCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'DFrame'
snakeCase(
object,
rownames = FALSE,
colnames = TRUE,
mcols = TRUE,
metadata = TRUE
)
## S4 method for signature 'Matrix'
snakeCase(object, rownames = FALSE, colnames = TRUE)
## S4 method for signature 'Ranges'
snakeCase(object, names = FALSE, mcols = TRUE, metadata = TRUE)
## S4 method for signature 'SummarizedExperiment'
snakeCase(
object,
rownames = FALSE,
colnames = TRUE,
assayNames = TRUE,
rowData = TRUE,
colData = TRUE,
metadata = TRUE
)
## S4 method for signature 'Vector'
snakeCase(object, names = TRUE, mcols = TRUE, metadata = TRUE)
## S4 method for signature 'DFrame'
upperCamelCase(
object,
rownames = FALSE,
colnames = TRUE,
mcols = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'Matrix'
upperCamelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
## S4 method for signature 'Ranges'
upperCamelCase(
object,
names = FALSE,
mcols = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'SummarizedExperiment'
upperCamelCase(
object,
rownames = FALSE,
colnames = TRUE,
assayNames = TRUE,
rowData = TRUE,
colData = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'Vector'
upperCamelCase(
object,
names = TRUE,
mcols = TRUE,
metadata = TRUE,
strict = TRUE
)
## S4 method for signature 'atomic'
upperCamelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'data.frame'
upperCamelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
## S4 method for signature 'factor'
upperCamelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'list'
upperCamelCase(object, names = TRUE, strict = TRUE)
## S4 method for signature 'matrix'
upperCamelCase(object, rownames = FALSE, colnames = TRUE, strict = TRUE)
object |
Object. |
rownames |
|
colnames |
|
mcols |
|
metadata |
|
strict |
|
names |
Only applies to string mode ( |
assayNames |
|
rowData |
|
colData |
|
... |
Additional arguments. |
Updated 2023-04-27.
data(syntactic, package = "AcidTest")
lapply(syntactic, camelCase)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.