File: vis.rarefaction.Rd

package info (click to toggle)
r-cran-tcr 2.3.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 2,316 kB
  • sloc: cpp: 187; makefile: 5
file content (32 lines) | stat: -rw-r--r-- 850 bytes parent folder | download | duplicates (2)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plots.R
\name{vis.rarefaction}
\alias{vis.rarefaction}
\title{Rarefaction statistics visualisation.}
\usage{
vis.rarefaction(.muc.res, .groups = NULL, .log = F, .names = T)
}
\arguments{
\item{.muc.res}{Output from the \code{muc} function.}

\item{.groups}{List with names for groups and names of the group members. If NULL than each
member is in the individual group.}

\item{.log}{if T then log-scale the y axis.}

\item{.names}{If T then print number of samples.}
}
\description{
Plot a line with mean unique clones.
}
\examples{
\dontrun{
data(twb)
names(twb)  # "Subj.A" "Subj.B" "Subj.C" "Subj.D"
twb.rar <- rarefaction(twb, .col = "Read.count")
vis.rarefaction(twb.rar, list(A = c("Subj.A", "Subj.B"), B = c("Subj.C", "Subj.D")))
}
}
\seealso{
\link{rarefaction}
}