search for: rsult

Displaying 2 results from an estimated 2 matches for "rsult".

Did you mean: result
2005 Dec 26
1
Problem in installatin under Unix
Hi all, I wanted to install R under a sunOs machine, so I launched the configuration with the following command: "./configure --prefix /sw/gnu/R/R-2.1.0/sun/ --with-readline=no" The rsult of this configuration seemed good " R is now configured for sparc-sun-solaris2.8 Source directory: . Installation directory: /sw/gnu/R/R-2.1.0/sun/ C compiler: gcc -g -O2 C++ compiler: g++ -g -O2 Fortran compiler: g77 -g -O2 In...
2012 Jun 29
5
assign object with loop (translation from SAS to R)
I have a dataset named DM with p1, p2, ...., p9 (9 columns, numerical values) I would like to calculate to multify each pair of columns (p1p2, p1p3,... p1p9, p2p3, p2p4.... p8p9) and assign them in p1p2, p1p3,... p1p9, p2p3, p2p4.... p8p9 In SAS, l=0; p_int_sum=0; do i=1 to 8; do j=(i+1) to 9; l=l+1; p{i}p{j}=p{i}*p{j}; end; end; I would like to know how to assign them in R I tried for