Skip to content
Prev 48042 / 63424 Next

ASCIIfy() - a proposal for package:tools

Nobody else has replied to this, so I will.  It's very unlikely that we 
would incorporate this function into base R.  For one thing, the tools 
package is intended to be tools used by R, not by users.  R doesn't need 
this function, so it doesn't belong in tools.  (Some other functions in 
tools like showNonASCII have come to be used by users, but their primary 
purpose is for R.)

Utility functions that are maintained by R Core and are useful to users 
belong in the utils package.  But I wouldn't add ASCIIfy to that package 
either, because I don't want to impose its maintenance on R Core.

Utility functions that are maintained by others belong in contributed 
packages.  So I'd suggest that you add this function to some package 
that you maintain (perhaps a new one, containing a collection of related 
utility functions), or search CRAN for an appropriate package with a 
maintainer who is willing to take this on.

Duncan Murdoch
On 15/04/2014 1:48 PM, Arni Magnusson wrote: