fawda123 / ggord

a take on ordination plots using ggplot2
https://fawda123.github.io/ggord/
62 stars 20 forks source link

Add Double Principle Coordinate Analysis (DPCoA) method #7

Closed vmikk closed 7 years ago

vmikk commented 7 years ago

Hello Marcus! I added ggord method for dpcoa from ade4 package. It works well (I also compared the results with phyloseq package):

library(ggord)
library(phyloseq)
data(esophagus)
eso.dpcoa <- DPCoA(esophagus)

plot_ordination(esophagus, eso.dpcoa, "biplot")  # phyloseq
ggord(eso.dpcoa)                                 # ggord with new dpcoa method

However, I cannot figure out why ggord.dpcoa doesn't appear in the documentation (despite that it was formatted for roxygen2 as all other methods).

With best regards, Vladimir

fawda123 commented 7 years ago

Awesome, thanks for contributing! Looks like you got the documentation issue worked out too.

vmikk commented 7 years ago

Great, I'm glad I was able to help. And thanks for ggord!