From 14fa92d2d358d4e95cac5982b917e1204fab0db5 Mon Sep 17 00:00:00 2001 From: Chang-Ho Kim <77651662+CHKim5@users.noreply.github.com> Date: Thu, 29 Jul 2021 13:54:23 +0900 Subject: [PATCH] Update README.md --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index c6e0648..9355911 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ The package includes * PCA +* PCoA + ## Instructions ### Installation @@ -281,3 +283,25 @@ PCA(Data,components = c(1,2),legend_position = "none") * names = F # used to indicate sample names * dotsize = 3 # dotsize * labsize = 3 # label size +* ellipse = T # T or F to show ellipse +#### PCoA +``` +# Makes a subdirectory and saves PCoA plot +PCoA(Data,components = c(1,2),methods = c("bray", "manhattan") +``` +
+
+
PCA plot with selected components
+ +##### Adjustable parameters +* color = c("#FF3300", "#FF6600", "#FFCC00", "#99CC00", "#0066CC", "#660099") # Colors for the plots +* legend_position = "none" # "none","left","right","bottom","top" +* fig_width = NA #figure size +* fig_height = NA #figure size +* components = c(1,2) # selected components +* names = F # used to indicate sample names +* dotsize = 3 # dotsize +* labsize = 3 # label size +* ellipse = T # T or F to show ellipse +* methods = Dissimilarity index c("manhattan", "euclidean", "canberra", "clark", "bray", "kulczynski", "jaccard", "gower", "altGower", "morisita", "horn", "mountford", "raup", "binomial", "chao", "cao", "mahalanobis", "chisq",chord")