File: DPT-methods.Rd

package info (click to toggle)
r-bioc-destiny 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,800 kB
  • sloc: cpp: 174; javascript: 141; sh: 12; python: 6; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download | duplicates (3)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dpt-methods.r
\name{DPT methods}
\alias{DPT methods}
\alias{dataset.DPT}
\alias{branch_divide}
\alias{tips}
\alias{dataset,DPT-method}
\alias{dataset<-,DPT-method}
\title{DPT methods}
\usage{
branch_divide(dpt, divide = integer(0L))

tips(dpt)

\S4method{dataset}{DPT}(object)

\S4method{dataset}{DPT}(object) <- value
}
\arguments{
\item{dpt, object}{DPT object}

\item{divide}{Vector of branch numbers to use for division}

\item{value}{Value of slot to set}
}
\value{
\code{branch_divide} and \code{dataset<-} return the changed object, \code{dataset} the extracted data, and \code{tips} the tip indices.
}
\description{
Methods for the \link{DPT} class. \code{branch_divide} subdivides branches for plotting (see the examples).
}
\examples{
data(guo_norm)
dpt <- DPT(DiffusionMap(guo_norm))
dpt_9_branches <- branch_divide(dpt, 1:3)
plot(dpt_9_branches, col_by = 'branch')

}
\seealso{
\link{plot.DPT} uses \code{branch_divide} for its \code{divide} argument.
}