search for: constract

Displaying 3 results from an estimated 3 matches for "constract".

Did you mean: conntract
2004 Dec 16
3
3 questions
Hello R users, I have three questions and I would be grateful if someone could give me an answer to each of these. 1) I have constracted a function that returns an output, which runs in a while( condition ){ run function } loop. I would like to know if there is a way to get the outputs in different windows, every time the function runs, so as to compare easier the results. 2) In my function I make use of the Rcmdr package. But e...
2009 Sep 02
4
within: order of newly added variables
Dear R community, I am using function 'within' in R.2.9.1 to add variables to an existing data.frame. This works wonderful, except for one minor point: The new variables are added to the data in reverse order. For example: x <- data.frame(a = 1:3, b = 4:6) y <- within(x, { c = a^2 d = b^2 e = c+d } ) gives a b e d c 1 1 4 17 16 1 2 2 5 29 25 4 3 3 6 45 36 9
2007 Feb 09
12
Module Organization
This is in reference to David Schmitt''s writeup [1] I like that writeup a lot; I just had a few comments/clarifications: * Namespaces: For now, we just use a flat namespace for modules, i.e. you can''t have modules within modules, and you always know that in a fully qualified name ''foo::bar::baz'' that ''foo'' is the module name and