Skip to content
Prev 332892 / 398503 Next

making chains from pairs

On Nov 8, 2013, at 10:56 AM, Hermann Norpois wrote:

            
Warning messages:
1: In test$V2 == x :
  longer object length is not a multiple of shorter object length
2: In test$V2 == x :
  longer object length is not a multiple of shorter object length
3: In test$V2 == x :
  longer object length is not a multiple of shorter object length
$A
[1] "A" "B" "F" "G" "H"

$B
[1] "B" "F" "I" "F" "I"

$C
[1] "C" "F" "I" "K"

$D
[1] "D" "L" "M" "N"

$L
[1] "L" "O" "P"
unlist(third[ sapply( third[[d]], "[" ) ]) ) ) )
$A
[1] "A" "B" "F" "G" "H" "I"

$B
[1] "B" "F" "I"

$C
[1] "C" "F" "I" "K"

$D
[1] "D" "L" "M" "N" "O" "P"

$L
[1] "L" "O" "P"
David Winsemius
Alameda, CA, USA