When converting a numeric value to a factor, can I specify the level values at which the conversion occurs? Is it possible to designate a special level as "too large
" or say "5+
" without defining a(n inline) function?
For example:
c(1,2,20,3,10)
would be converted to:
factor(c("1","2","many","3","many"))
Yes, you can use cut, e.g.,
yields
cut has a number of additional parameters to control how values get placed in the bins, so read the help there.