
Last chance! 50% off unlimited learning
Sale ends in
options(stringsAsFactors = FALSE)
inside
a parent function and restore the option after the parent function exitsThis is a shorthand of opts = options(stringsAsFactors = FALSE);
on.exit(options(opts), add = TRUE)
; strings_please()
is an alias of
stringsAsStrings()
.
stringsAsStrings()strings_please()
# NOT RUN {
f = function() {
xfun::strings_please()
data.frame(x = letters[1:4], y = factor(letters[1:4]))
}
str(f()) # the first column should be character
# }
Run the code above in your browser using DataLab