I am using RStudio, programs ape and phytools
. I've generated a tree with 500 bootstrap replicates stored in an object of class phylo
.
Where cw
is the name of my tree, I've tried the following:
round(cw, digits = 2)
and I get the following error message:
Error in round(cw, digits = 2) : non-numeric argument to mathematical function
I feel like it's probably a very simple manipulation but I'm not sure how to get there.
Hard to tell without a reproducible example but I guess that your bootstrap scores are probably stored in the
$node.label
subset of your tree.You can try the following:
If they are numeric values:
If they are characters, you can probably coerce them (that can produce some NAs)