make_clean_names {rstatix} | R Documentation |
Make Clean Names
Description
Pipe-friendly function to make syntactically valid names out of character vectors.
Usage
make_clean_names(data)
Arguments
data |
a data frame or vector |
Value
a data frame or a vector depending on the input data
Examples
# Vector
make_clean_names(c("a and b", "a-and-b"))
make_clean_names(1:10)
# data frame
df <- data.frame(
`a and b` = 1:4,
`c and d` = 5:8,
check.names = FALSE
)
df
make_clean_names(df)
[Package rstatix version 0.7.2 Index]