2020-10-27 00:21:24 +03:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/supporting_functions.R
|
|
|
|
\name{camel_clean}
|
|
|
|
\alias{camel_clean}
|
|
|
|
\title{Convert "CamelCase" to "Camel Case"}
|
|
|
|
\usage{
|
|
|
|
camel_clean(string)
|
|
|
|
}
|
|
|
|
\arguments{
|
|
|
|
\item{string}{A string vector in 'CamelCase' format to format}
|
|
|
|
}
|
2021-03-30 20:01:03 +03:00
|
|
|
\value{
|
|
|
|
Returns a formatted string.
|
|
|
|
}
|
2020-10-27 00:21:24 +03:00
|
|
|
\description{
|
|
|
|
Convert a text string from the format "CamelCase" to "Camel Case".
|
|
|
|
This is used for converting variable names such as
|
|
|
|
"LevelDesignation" to "Level Designation" for the purpose
|
|
|
|
of prettifying plot labels.
|
|
|
|
}
|
|
|
|
\examples{
|
|
|
|
camel_clean("NoteHowTheStringIsFormatted")
|
|
|
|
|
|
|
|
}
|
2021-03-04 21:33:28 +03:00
|
|
|
\seealso{
|
|
|
|
Other Support:
|
2021-03-05 00:20:34 +03:00
|
|
|
\code{\link{check_inputs}()},
|
2021-03-04 21:33:28 +03:00
|
|
|
\code{\link{combine_signals}()},
|
|
|
|
\code{\link{cut_hour}()},
|
|
|
|
\code{\link{extract_date_range}()},
|
2021-03-05 01:19:07 +03:00
|
|
|
\code{\link{extract_hr}()},
|
2021-03-05 14:18:35 +03:00
|
|
|
\code{\link{heat_colours}()},
|
|
|
|
\code{\link{is_date_format}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\code{\link{maxmin}()},
|
|
|
|
\code{\link{p_test}()},
|
|
|
|
\code{\link{pairwise_count}()},
|
|
|
|
\code{\link{plot_WOE}()},
|
|
|
|
\code{\link{read_preamble}()},
|
|
|
|
\code{\link{rgb2hex}()},
|
|
|
|
\code{\link{totals_bind}()},
|
|
|
|
\code{\link{totals_col}()},
|
|
|
|
\code{\link{totals_reorder}()},
|
|
|
|
\code{\link{tstamp}()},
|
|
|
|
\code{\link{us_to_space}()},
|
|
|
|
\code{\link{wrap}()}
|
2021-03-04 21:33:28 +03:00
|
|
|
}
|
|
|
|
\concept{Support}
|