Browse code

generate documentations by pkgdown

Zuguang Gu authored on 18/10/2019 11:34:02
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,35 +0,0 @@
1
-\name{row_order-HeatmapList-method}
2
-\alias{row_order,HeatmapList-method}
3
-\title{
4
-Get Row Order from a Heatmap List
5
-}
6
-\description{
7
-Get Row Order from a Heatmap List
8
-}
9
-\usage{
10
-\S4method{row_order}{HeatmapList}(object, name = NULL)
11
-}
12
-\arguments{
13
-
14
-  \item{object}{A \code{\link{HeatmapList-class}} object.}
15
-  \item{name}{Name of a specific heatmap.}
16
-
17
-}
18
-\value{
19
-The format of the returned object depends on whether rows/columns of the heatmaps are split.
20
-}
21
-\author{
22
-Zuguang Gu <z.gu@dkfz.de>
23
-}
24
-\examples{
25
-mat = matrix(rnorm(100), 10)
26
-ht_list = Heatmap(mat) + Heatmap(mat)
27
-ht_list = draw(ht_list)
28
-row_order(ht_list)
29
-ht_list = Heatmap(mat, row_km = 2) + Heatmap(mat)
30
-ht_list = draw(ht_list)
31
-row_order(ht_list)
32
-ht_list = Heatmap(mat, row_km = 2) \%v\% Heatmap(mat)
33
-ht_list = draw(ht_list)
34
-row_order(ht_list)
35
-}
Browse code

documentation checked

Zuguang Gu authored on 23/10/2018 19:59:12
Showing 1 changed files
... ...
@@ -1,17 +1,18 @@
1 1
 \name{row_order-HeatmapList-method}
2 2
 \alias{row_order,HeatmapList-method}
3 3
 \title{
4
-Get row order from a heatmap list
4
+Get Row Order from a Heatmap List
5 5
 }
6 6
 \description{
7
-Get row order from a heatmap list
7
+Get Row Order from a Heatmap List
8 8
 }
9 9
 \usage{
10
-\S4method{row_order}{HeatmapList}(object)
10
+\S4method{row_order}{HeatmapList}(object, name = NULL)
11 11
 }
12 12
 \arguments{
13 13
 
14
-  \item{object}{a \code{\link{HeatmapList-class}} object}
14
+  \item{object}{A \code{\link{HeatmapList-class}} object.}
15
+  \item{name}{Name of a specific heatmap.}
15 16
 
16 17
 }
17 18
 \value{
... ...
@@ -28,7 +29,7 @@ row_order(ht_list)
28 29
 ht_list = Heatmap(mat, row_km = 2) + Heatmap(mat)
29 30
 ht_list = draw(ht_list)
30 31
 row_order(ht_list)
31
-ht_list = Heatmap(mat, row_km = 2) %v% Heatmap(mat)
32
+ht_list = Heatmap(mat, row_km = 2) \%v\% Heatmap(mat)
32 33
 ht_list = draw(ht_list)
33 34
 row_order(ht_list)
34 35
 }
Browse code

update

jokergoo authored on 12/10/2018 15:28:37
Showing 1 changed files
... ...
@@ -15,7 +15,7 @@ Get row order from a heatmap list
15 15
 
16 16
 }
17 17
 \value{
18
-A list contains row orders which correspond to the original matrix
18
+The format of the returned object depends on whether rows/columns of the heatmaps are split.
19 19
 }
20 20
 \author{
21 21
 Zuguang Gu <z.gu@dkfz.de>
... ...
@@ -23,9 +23,12 @@ Zuguang Gu <z.gu@dkfz.de>
23 23
 \examples{
24 24
 mat = matrix(rnorm(100), 10)
25 25
 ht_list = Heatmap(mat) + Heatmap(mat)
26
+ht_list = draw(ht_list)
26 27
 row_order(ht_list)
27 28
 ht_list = Heatmap(mat, row_km = 2) + Heatmap(mat)
29
+ht_list = draw(ht_list)
28 30
 row_order(ht_list)
29 31
 ht_list = Heatmap(mat, row_km = 2) %v% Heatmap(mat)
32
+ht_list = draw(ht_list)
30 33
 row_order(ht_list)
31 34
 }
Browse code

R CMD check passed

Zuguang Gu authored on 20/09/2018 12:48:08
Showing 1 changed files
1 1
old mode 100755
2 2
new mode 100644
... ...
@@ -24,6 +24,8 @@ Zuguang Gu <z.gu@dkfz.de>
24 24
 mat = matrix(rnorm(100), 10)
25 25
 ht_list = Heatmap(mat) + Heatmap(mat)
26 26
 row_order(ht_list)
27
-ht = Heatmap(mat, km = 2) + Heatmap(mat)
27
+ht_list = Heatmap(mat, row_km = 2) + Heatmap(mat)
28
+row_order(ht_list)
29
+ht_list = Heatmap(mat, row_km = 2) %v% Heatmap(mat)
28 30
 row_order(ht_list)
29 31
 }
Browse code

anoying rebase

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ComplexHeatmap@111684 bc3139a8-67e5-0310-9ffc-ced21a209358

z.gu authored on 20/12/2015 21:42:51
Showing 1 changed files
... ...
@@ -17,8 +17,13 @@ Get row order from a heatmap list
17 17
 \value{
18 18
 A list contains row orders which correspond to the original matrix
19 19
 }
20
+\author{
21
+Zuguang Gu <z.gu@dkfz.de>
22
+}
20 23
 \examples{
21
-# There is no example
22
-NULL
23
-
24
+mat = matrix(rnorm(100), 10)
25
+ht_list = Heatmap(mat) + Heatmap(mat)
26
+row_order(ht_list)
27
+ht = Heatmap(mat, km = 2) + Heatmap(mat)
28
+row_order(ht_list)
24 29
 }
Browse code

Merge branch 'master' into devel

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ComplexHeatmap@108253 bc3139a8-67e5-0310-9ffc-ced21a209358

z.gu authored on 07/09/2015 20:39:32
Showing 1 changed files
1 1
old mode 100644
2 2
new mode 100755
Browse code

resolve conflict from master branch

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ComplexHeatmap@108131 bc3139a8-67e5-0310-9ffc-ced21a209358

z.gu authored on 03/09/2015 20:32:44
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,24 @@
1
+\name{row_order-HeatmapList-method}
2
+\alias{row_order,HeatmapList-method}
3
+\title{
4
+Get row order from a heatmap list
5
+}
6
+\description{
7
+Get row order from a heatmap list
8
+}
9
+\usage{
10
+\S4method{row_order}{HeatmapList}(object)
11
+}
12
+\arguments{
13
+
14
+  \item{object}{a \code{\link{HeatmapList-class}} object}
15
+
16
+}
17
+\value{
18
+A list contains row orders which correspond to the original matrix
19
+}
20
+\examples{
21
+# There is no example
22
+NULL
23
+
24
+}