[R] Install R (version 3.2.5) in CentOS platform

2016-04-30 Thread wenbo
Hi, I want to install the latest R in CentOS. Below is the command line: ./configure --prefix=/home/fino/R/3.2.5/ --with-tcl-config=/home/fino/software/tcl8.6.1/lib/tclConfig.sh --with-tk-config= /home/fino /software/tk8.6.1/lib/tkConfig.sh --with-readline=yes --with-cairo=yes --without-x Below

Re: [R] create variables with indexes

2010-07-13 Thread Wenbo Mu
Maybe I misunderstand your problem. For my understanding, it's quite simple.I hope it can help. id - vector() for(i in 1:10){ for(j in 1:10){ id-append(id,paste(X,i,j,sep=_)) } } Wenbo Mu On Tue, Jul 13, 2010 at 5:44 PM, He, Yulei h...@hcp.med.harvard.edu