Displaying 1 result from an estimated 1 matches for "12_t1".
Did you mean:
12_1
2009 Sep 17
1
How to colour the tip labels in a phylogenetic tree
...ree_ja$tip.label' provides the following:
[1] "1_T1" "2_T1" "3_T1" "4_T1" "5_T1" "6_T1"
[7] "7_T1" "8_T1" "9_T1" "10_T1" "11_T1" "12_T1"
and that my 'subspecies' vector is:
subspecies <- c("1_T1", "2_T1", "3_T1", "4_T1", "6_T1")
which can also be written as:
subspecies <- c(tree_ja$tip.label[1:4], tree_ja$tip.label[5])
I can construct a method which gives me th...