Last active
January 29, 2016 10:37
-
-
Save kinow/7b8b95a59224ccf7ba9c to your computer and use it in GitHub Desktop.
BioUno eResearchNZ R gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# taxize | |
library('taxize') | |
library('brranching') | |
taxa <- c("Poa annua", "Phlox diffusa", "Helianthus annuus") | |
tree <- phylomatic(taxa=taxa, storedtree = "R20120829") | |
png(filename = "taxize_plot_01.png", width = 480, height = 480) | |
plot(tree) | |
dev.off() | |
# antweb | |
library("AntWeb") | |
acd <- aw_data(genus = "acanthognathus") | |
aw_map(acd,dest='/home/bruno/Desktop/', title='BioUno example', incl.data=TRUE) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment