Description Usage Arguments Value See Also Examples
lower_names
acts on the column names of a data frame and converts
them to lower case (by default) or upper case (with case = "upper").
lower_names
plays nice with %>%
from dplyr/magrittr.
1 | lower_names(.data, ..., case = "lower")
|
.data |
A data frame. |
... |
Comma separated list of unquoted expressions. Defaults to all columns. |
case |
A character vector |
A data frame.
Other case functions: lower_factors_
;
lower_factors
; lower_names_
1 2 3 4 5 6 7 8 9 10 | lower_names(iris, case = "upper")
# Lower case is default
lower_factors(iris)
#Specific columns
lower_names(iris, Sepal.Length, Species)
# Standard Evaluation with lower_names_
lower_factors_(iris, ~Species, case = "upper")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.