Hi R People! Is there a setup for Roman numerals similar to that of LETTERS and letters, please? I was putting together a randomized block design and thought that it might be nice for factors. Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2008/10/16 Erin Hodgess <erinm.hodgess at gmail.com>:> Hi R People! > > Is there a setup for Roman numerals similar to that of LETTERS and > letters, please? > > I was putting together a randomized block design and thought that it > might be nice for factors. > > Thanks, > Erin >as.roman() in utils: > library(utils) > as.roman(1:10) [1] I II III IV V VI VII VIII IX X Barry