Displaying 1 result from an estimated 1 matches for "thisindex".
Did you mean:
this_index
2012 Jul 18
2
loop searching the id corresponding to the given index (timestamp)
...hReport) <- c("dive_id", "site", "section", "level", "transect",
"depth", "species", "count", "size")
for(i in 1:dim(diveData_2008)[1]){
# Which dive is this observation from
thisIndex <- as.character(index(diveData_2008[i,]))
dive_id <-
diveCond_all$dive_id[diveCond_all$timestamp==thisIndex]
cat(dive_id, thisIndex, "\n")
# Store the pertinent data in the fish report data.frame
fishReport$dive_id[i]...