search for: undevelop

Displaying 5 results from an estimated 5 matches for "undevelop".

Did you mean: develop
2009 May 02
1
eSATA controller that supports Centos 4.4
Hi, I'm looking for SATA controller with a eSATA port that is supported by Centos 4.4 ( rhel 4.4) Do you have any suggestions for a eSATA controller with good Linux support ? How can I list the sata controllers supported by Centos 4.4 ? Thanks JF Leblond Jean-Fran?ois Leblond jfleblond68 at hotmail.com _________________________________________________________________ D?couvrez
2012 Apr 02
1
fatal error prevents multi-line functions or loop to run
Dear all, I have written some function that can go up to many lines. Two of the lines give warning errors like: Error in print(....)[c(1, : error in evaluating the argument 'x' in selecting a method for function 'print': Error in ... regions with no neighbours found now obviously this kind of error will halt the execution of the function. I tried *try()* or *tryCatch()*
2006 Jan 23
1
--gui=Tk window does not stretch (PR#8520)
Full_Name: Greg Kochanski Version: 2.2.0 OS: Debian Linux Submission from: (NULL) (212.159.16.190) When you grab the corner of the Tk-R (R's console) window, the window stretches, but the useable area does not. It remains firmly fixed at the (rather small) value of 24 lines. In fact, you end up with a grey border of wasted pixels around the active white area that contains the text. (And,
2001 Jul 29
4
style question: returning multiple arguments - structure orlist
I see Thomas has already nailed this one, so it becomes a non-issue. Nevertheless I feel moved to say I think the idea would have been a step in the wrong direction in the first place. It comes from a desire to make R behave "a bit more like matlab" and that is ultimately unhelpful. Having tried to teach generations of students how to use the system (S-PLUS, but it could equally well
2012 Apr 05
4
Help Using Spreadsheets
Hello, I am a new user of R and I am trying to use the data I am reading from a spreadsheet. I installed the xlsReadWrite package and I am able to read data from this files, but how can I assign the colums into values? E.g: as I read a spreadsheet like this one: A B 1 2 4 9 I manually assign the values: A<-c(1,4) B<-c(2,9) to plot it on a graph: plot(A,B) or make histograms: hist(A) But