Displaying 1 result from an estimated 1 matches for "associta".
Did you mean:
associat
2007 Jul 17
2
SLLOOOWWW function ...
...w to make this faster?
I suspect, that the rounding going on may be an issue, as is the stepping
through data frame rows using integers ...
If you have the patience to teach a noob, he will highly appreciate it ;0)
Joh
digit <- 4
for (minute in seq(from=25,to=lrange[2])){
# Extract all data associtaed with the current time (minute)
frame <- subset(mylist,mylist[["Time"]] == minute)
# Sort by Intensity
frame <- frame[order(frame[["Intensity"]],decreasing = TRUE),]
# Establish output frame using the most intense candidate
newframe <- frame[1,]
# Establish...