Displaying 1 result from an estimated 1 matches for "rw104x".
Did you mean:
rw1041
2002 Apr 03
2
R package organization
...d the directory
structure for installed modules. So, to use functions to search
for files on my file system, I say
use File::Find;
and if someone writes a new module, say FastCopy.pm it goes into
/usr/lib/perl5/File/FastCopy.pm in my Perl library.
In R, on the other hand, everything goes into R/rw104x/library,
and each pachage contains all its functions within packagename/R,
so there is only a very flat organization across packages
and within packages.
Some packages are quite coherent and relate to a single general
class of methods (John Fox's sem package, for example), while
others are a h...