FROM: http://rwiki.sciviews.org/doku.php?id=getting-started:installation:android
R on Android
As Android is similar to Linux, you can easily install R on it.
But building requires a lot of patching as the libc is bionic (reduced).
[edit] 2011 Aug 1: Fixed Rscript’s R_HOME (was /data/local/work/R lol)
Also fixed sysutils.c(libR.so) (and littler.c)’s hardcoded /tmp to /data/local/gcc/tmp. You need root to mkdir /tmp on Android.
[edit2] 2011 Aug 5: Fixed lib/R/library/*’s permission. Now non-root user can untar.
[edit3] 2011 Aug 6: Fixed R/Rcmd/...’s /sbin/bash dependency (now they use /system/bin/sh correctly).
You should update to r1a2.
Limitation
-
“Rscript -e EXPR” uses tmp file(), which uses /tmp. You need root to create that dir. You should write file or you can use “r -e EXPR”.
-
You need busybox’s uname and rm in $PATH.
Install R
get 3 files:
then (here I suppose you have GNU tar or busybox):
adb shell mkdir /data/local/gcc adb push android_gcc_r2a.tar.bz2 /data/local/gcc adb push android_gcc_supplement.tar.bz2 /data/local/gcc adb push android_R_r1a2.tar.bz2 /data/local/gcc adb shell cd /data/local/gcc tar xjf android_gcc_r2a.tar.bz2 tar xjf android_gcc_supplement.tar.bz2 tar xjf android_R_r1a2.tar.bz2
finally (writing to bashrc is recommended):
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/data/local/gcc/lib export PATH=$PATH:/data/local/gcc/bin
This consumes 170MB, so be careful if your Android’s /data is small.
If you still want to compile and install R by yourself check Build R section.
Install R packages
As only R binary is provided by this package, you have to install packages in R way via install.packages().
install.packages()
For non-basic packages, you can normally use install.packages() as it is described elsewhere.
If your device isn’t rooted, you will have to “chmod -R o+rx /data/local/gcc/lib/R/library”.
Update R packages
Packages can be updated via R’s update.packages() function.
Miscellaneous
Build R
TBA. There are too many patches around glob/wctrans/tre_regwcomp. I had to kill WCHAR support to make grep() work.
-
extract https://www.dropbox.com/s/uammywfed6d2rgj/android_R_r1a_src.tar.bz2 to /sdcard/
-
execute “remount -o remount,rw,exec /mnt/sdcard /mnt/sdcard” (bah, this requires root)
-
execute “/sdcard/R-2.13.0/configure –prefix=/data/local/gcc –enable-R-shlib –with-system-zlib –with-system-bzlib –with-system-pcre –without-x”
-
src/include/config.h #define HAVE_LOCALE_H 1 -> remove
-
src/include/config.h #define HAVE_LIBC_STACK_END 1 -> remove
-
src/include/Rconfig.h #define SUPPORT_UTF8 1 -> remove
-
src/include/Rconfig.h #define SUPPORT_MBCS 1 -> remove
-
src/extra/blas/Makefile: change: “SOURCES = xerbla.c blas00.c blas.f cmplxblas.f” change: “blas_OBJS=blas.o cmplxblas.o xerbla.o blas00.o”
-
src/modules/lapack/Makefile: change: “SOURCES_C = blas00.c xerbla.c Lapack.c” change: “LIBOBJECTS = $(LIBSOURCES:.f=.o) xerbla.o”
-
Fix Makeconf’s abs_top_builddir
-
execute “make”
Perhaps you don’t have enough space to execute “make install”. So modify bin/R and etc/{ldpaths,Renviron} by hand.
Well, this configured R is compatible with http://dirk.eddelbuettel.com/code/littler.html .
Running R
Once installed, open up a console and type:
R
very low /data capacity
If you have VERY low /data capacity and 170MB is too much, there is a workaround if your Android is rooted.
-
Download https://www.dropbox.com/s/uammywfed6d2rgj/android_gcc_R.ext2.bz2 and decompress to /sdcard
-
execute “mount /sdcard/android_gcc_R.ext2 /data/local/gcc”
Of course your kernel must have ext2(or ext3) support... Aww only if vfat had symlink stuff...
本文档介绍了如何在Android系统上安装R,包括解决依赖问题、权限限制和存储空间问题。通过下载特定的tar.bz2文件并进行一系列配置,可以实现R的安装和包的管理。此外,还提供了针对低数据容量设备的解决方案,以及编译R的步骤。
1168

被折叠的 条评论
为什么被折叠?



