| CapWords {hivModelling} | R Documentation |
Capitalizes every word of string
CapWords(s, strict = FALSE)
s |
String to capitalize. Required. |
strict |
Logical indicating to make sure only the first letter of output
string is capital. Default = |
NULL (invisibly)
CapWords(c('word1', 'word2'))
CapWords('this is sentence')
CapWords('MODEL', strict = FALSE)
CapWords('MODEL', strict = TRUE)