search for: r_language

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

Did you mean: c_language
2011 Nov 30
1
sma installation error
...encoding with non-ASCII data: converting to ASCII ** R Error : '\#' is an unrecognized escape in character string starting "but the suffixes must be integers 1,2, ..., \#" ERROR: unable to collate and parse R files for package 'sma' * removing '/home/psgendb/local/pkg/R_language/lib64/R/library/sma' Warning message: In install.packages("sma_0.5.15.tar.gz", repos = NULL) :   installation of package 'sma_0.5.15.tar.gz' had non-zero exit status ====== My system is Linux cc01 2.6.18-238.19.1.el5 #1 SMP Fri Jul 15 07:31:24 EDT 2011 x86_64 x86_64 x86_64...
2004 Aug 24
2
bug or no?
The following code prints [1] 2, as it should temp<-function(ab,...){ print(ab) } temp(2,s=3) However, this code prints [1] 3: temp<-function(sb,...){ print(sb) } temp(2,s=3) It should still print [1] 2. It appears that if a variable in ... begins with the same letter as another variable, the value in the variable in ... overwrites the value in the variable with the same first letter. I