Displaying 2 results from an estimated 2 matches for "checkrow".
Did you mean:
checkbox
2006 Sep 28
1
Comparing entire row sets at once efficiently
...ubset of the first, or a superset but it guaranted to
contain the same columns
let's call this one Comparison
* I want know which rows in Candidates are not yet in Comparison.
A toy example:
> Comparison <- matrix(1:30, ncol=5)
> Candidates <- Comparison[c(2,4), ]
> checkRow <- function(r, M) { any( (r[1] == M[,1]) & (r[2] == M[,2]) & (r[3] == M[,3]) & (r[4] == M[,4]) ) }
> checkRow( Candidates[1,], Comparison)
[1] TRUE
> falseRow <- Candidates[1,]
> falseRow[2] <- 42
> checkRow( falseRow, Comparison)
[1] FALSE
>
The checkRow func...
2009 Aug 13
0
[fdo] Announce: Linux Desktop Testing Project (LDTP) 1.7.0 released
...55 ? Keycodes mismatch using generatekeyevent from python-ldtp
586655 ? typo hasstate example with more one state separator '+' instead of
','
587614 ? Method to measure how long a window is showing up
588674 ? It would be nice if doesrowexist would look for partial matches
587456 ? checkrow action fails on tree table cell
583021 ? If an application changes a context, it is no longer found by LDTP
588819 ? 'import ldtp' freezes interpreter
589898 ? local variable 'gobject' referenced before assignment
586291 ? Subsequent tests fail when first one registers callback hand...