Re: [R] Reading File Sizes: very slow!

2021-09-25 Thread Richard O'Keefe
On a $150 second-hand laptop with 0.9GB of library, and a single-user installation of R so only one place to look LIBRARY=$HOME/R/x86_64-pc-linux-gnu-library/4.0 cd $LIBRARY echo "kbytes package" du -sk * | sort -k1n took 150 msec to report the disc space needed for every package. That' On Sun,

Re: [R] Reading File Sizes: very slow!

2021-09-25 Thread Bill Dunlap
On my Windows 10 laptop I see evidence of the operating system caching information about recently accessed files. This makes it hard to say how the speed might be improved. Is there a way to clear this cache? > system.time(L1 <- size.f.pkg(R.home("library"))) user system elapsed 0.482

[R] Reading File Sizes: very slow!

2021-09-25 Thread Leonard Mada via R-help
Dear List Members, I tried to compute the file sizes of each installed package and the process is terribly slow. It took ~ 10 minutes for 512 packages / 1.6 GB total size of files. 1.) Package Sizes system.time({         x = size.pkg(file=NULL); }) # elapsed time: 509 s !!! # 512 Packages