Diff of /man/clustheatmap.Rd [000000] .. [28e211]

Switch to unified view

a b/man/clustheatmap.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/DIscBIO-generic-clustheatmap.R
3
\name{clustheatmap}
4
\alias{clustheatmap}
5
\alias{clustheatmap,DISCBIO-method}
6
\title{Plotting clusters in a heatmap representation of the cell distances}
7
\usage{
8
clustheatmap(
9
  object,
10
  clustering_method = "k-means",
11
  hmethod = "single",
12
  rseed = NULL,
13
  quiet = FALSE,
14
  plot = TRUE
15
)
16
17
\S4method{clustheatmap}{DISCBIO}(
18
  object,
19
  clustering_method = "k-means",
20
  hmethod = "single",
21
  rseed = NULL,
22
  quiet = FALSE,
23
  plot = TRUE
24
)
25
}
26
\arguments{
27
\item{object}{\code{DISCBIO} class object.}
28
29
\item{clustering_method}{either "k-means" or "model-based" ("k" and "mb" are
30
also accepted)}
31
32
\item{hmethod}{Agglomeration method used for determining the cluster order
33
from hierarchical clustering of the cluster medoids. This should be one of
34
"ward.D", "ward.D2", "single", "complete", "average". Default is "single".}
35
36
\item{rseed}{Random integer to fix random results.}
37
38
\item{quiet}{if `TRUE`, intermediary output is suppressed}
39
40
\item{plot}{if `TRUE`, plots the heatmap; otherwise, just prints cclmo}
41
}
42
\value{
43
Unless otherwise specified, a heatmap and a vector of the underlying
44
  cluster order.
45
}
46
\description{
47
This functions plots a heatmap of the distance matrix grouped
48
  by clusters. Individual clusters are highlighted with rainbow colors along
49
  the x and y-axes.
50
}