-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNMDS.Rd
51 lines (41 loc) · 1.22 KB
/
NMDS.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/NMDS.R
\name{NMDS}
\alias{NMDS}
\title{Automatically save NMDS plots for the selected dimension metrics}
\usage{
NMDS(
Data,
methods = c("euclidean", "bray"),
color = c("#FF3300", "#660099", "#FFCC00", "#99CC00", "#0066CC", "#FF6600"),
legend_position = "bottom",
fig_width = 24,
fig_height = 20,
dotsize = 3,
names = F,
labsize = 3,
ellipse = T
)
}
\arguments{
\item{Data}{uploaded data}
\item{methods}{c("manhattan", "euclidean", "canberra", "clark", "bray", "kulczynski", "jaccard", "gower", "altGower", "morisita", "horn", "raup", "binomial", "mahalanobis", "chisq","chord")}
\item{color}{colors used for ggplots.color=c("#FF3300","#FF6600","#FFCC00","#99CC00","#0066CC","#660099")}
\item{legend_position}{legend position "none","left","right","bottom","top"}
\item{fig_width}{figure size}
\item{fig_height}{figure size}
\item{dotsize}{dot size}
\item{names}{whether the names are to be indicated T,F}
\item{labsize}{label size}
\item{ellipse}{T, F}
}
\value{
NMDS plot
}
\description{
Automatically save NMDS plots for the selected dimension metrics
}
\examples{
data(Data)
NMDS(Data,methods = c("euclidian","manhattan","bray"))
}