Skip to content

Commit

Permalink
Update taxon-information-content.R
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeaudette committed Jan 4, 2024
1 parent b13aec1 commit dc250b3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion misc/taxon-information-content.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,23 @@ for(i in 1:nrow(ST)) {
ST$information[i] <- .z
}

bwplot(order ~ information, data = ST, par.settings = tactile.theme())
# check out very low I
ST[which(ST$information < 10), ]

## TODO: taxon "LAAA" missing subgroup label
## ---> missing from ST_unique_list





bwplot(order ~ information, data = ST, par.settings = tactile.theme(), scales = list(x = list(tick.number = 15)), xlab = 'Formative Element Information Content (bytes)', panel = function(...) {
panel.grid(-1, -1)
panel.bwplot(...)
})

bwplot(suborder ~ information, data = ST, par.settings = tactile.theme())

bwplot(suborder ~ information | order, data = ST, par.settings = tactile.theme(), scales = list(y = list(relation = 'free'), x = list(alternating = 1)), as.table = TRUE)


Expand Down

0 comments on commit dc250b3

Please sign in to comment.