Hi Dean & group members,
Thank you for your response; I'm grateful for your insight. I followed your suggestion and evaluated the degree of phylogenetic signal using the physignal.eigen function. It appears that phylogenetic signal is low in my dataset (plot below); however, I'm getting different Kmult values between the physignal and physignal.eigen functions (code & output below). Should this be happening? Or might you have some ideas about why the numbers are calculated differently? I'd like to report the appropriate number for publication. Thanks for your time, and I look forward to hearing from you.
Sincerely,
Ani
---------------------------
Using physignal
summary(physignal(species.dataframe.matched$shape, must.tree, iter = 10000, seed = NULL, print.progress = TRUE))
Call:
physignal(A = species.dataframe.matched$shape, phy = must.tree,
iter = 10000, seed = NULL, print.progress = TRUE)
Observed Phylogenetic Signal (K): 0.38804
P-value: 1e-04
Based on 10001 random permutations
Using physignal.z (does not provide Kmult)
summary(physignal.z(species.dataframe.matched$shape, must.tree, lambda = "burn", iter = 10000, seed = NULL, print.progress = TRUE))
Call:
physignal.z(A = species.dataframe.matched$shape, phy = must.tree,
lambda = "burn", iter = 10000, seed = NULL, print.progress = TRUE)
Evaluation of phylogenetic signal effect size
Optimization method: burn
Optimization performed in 19 data dimensions.
The scaling parameter, lambda, was optimized at 0.
This means that the log-likelihood was invariant across permutations
and there is no phylogenetic signal in the data.
Using physignal.eigen
> physignal.species.shape.evs = physignal.eigen(Y = species.dataframe.matched$shape, phy = must.tree)
> summary(physignal.species.shape.evs)
Observed Phylogenetic Signal (traceK): 7.897
Observed Effect Size (Z-traceK): -0.1272
P-value (traceK): 0.552
Observed Phylogenetic Signal (detK): 3.293e-14
Observed Effect Size (Z-detK): 0.0554
P-value (detK): 0.48
Observed Phylogenetic Signal (Kmult): 0.05657
Observed Effect Size (Z-Kmult): 5.0767
P-value (Kmult): 0.001
Based on 1000 random permutations