Displaying 2 results from an estimated 2 matches for "ecery".
Did you mean:
ecer
2005 Jan 10
2
doing many commands within R
...a list of the
data files.
e.g.
namelist <- readLines("list_of_names",n=-1)
for (i in 1:100) {
k <- function(namelist[i])
write(k,file="outputfile",append=TRUE)
}
Next, I tried automating the R commands by making a loop. Within the
loop I called the R-script. Within ecery single loop R called the R-script
and performs the commands therein (or is supposed to perform it) on
the actual data file.
After a loop finished, I tried appending the output to an output file.
The problem is that R gives an error message saying that it cannot
open the input files.
What can...
2006 Apr 16
9
''depot'' app, where''s session?
Many of you probably know the ''depot'' app from the ''Agile Rails
development'' book.
I have constructed the ''products'' model, the Store-controller, and the
''Cart'' and ''Line Item'' classes. I have told Application-controller about
:cart and :line_item:
model :cart
model :line_item
Here''s part of