http://www.phytools.org/eqg/Exercise_3.2/
library('ggplot2')
library('ggtree')
library('treeio')
library('ggrepel')
beast_file <- system.file("examples/star_mcmc_species2.tree", package="ggtree")
beast_tree <- read.beast(beast_file)
genotype_file <- system.file("examples/euploea06.txt", package="ggtree")
genotype <- read.table(genotype_file, sep="\t", stringsAsFactor=F)
colnames(genotype) <- sub("\\.$", "", colnames(genotype))
p <- ggtree(beast_tree, mrsd="2013-01-01") + geom_treescale(x=2008, y=1, offset=2)
p <- p + geom_tiplab(size=2)
gheatmap(p, genotype, offset = 50, width=0.5, font.size=3, colnames_angle=-45, hjust=0)
ggsave('beasttest03.jpg', dpi = 600)
數學式
2021年6月26日 星期六
訂閱:
文章 (Atom)
不同性別青少年非預期性單腿落地上的生物力學與能量吸收差異
青少年非預期單腿落地跳中的性別差異生物力學和能量吸收:對膝關節損傷力學的影響 Sex-specific landing biomechanics and energy absorption during unanticipated single-leg drop-jumps in...
-
Epidemiology of Anterior Cruciate Ligament Injury in Italian First Division Soccer Players 介紹 足球需要在比賽或練習中需要執行大量的改變方向、加速減速運動還有快速的跳躍與落地,在執行這樣的...
-
Mann-Whitney U 檢定是適用在比較兩組樣本的等級尺度變項的無母數假設檢定,並不假設任何分數分佈的情形 所謂的無母數檢定是,當實驗的樣本數較小、母群體的分布情況未明、母群體分布不為常態也不容易轉為常態所適用的統計分析 Mann-Whitney的假設 從母體抽出的樣本是隨...