| 12
 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
 
 | \name{Miscellaneous LEM}
\alias{show,LinearEmbeddingMatrix-method} 
\title{Miscellaneous LEM methods}
\description{Various methods for the LinearEmbeddingMatrix class.}
\usage{
\S4method{show}{LinearEmbeddingMatrix}(object)
}
\arguments{
\item{object}{A LinearEmbeddingMatrix object.}
}
\details{
The \code{show} method will print out information about the data contained in \code{object}.
This includes the number of samples, the number of factors, the number of genes and the fields available in \code{factorData}.
}
\value{
A message is printed to screen describing the data stored in \code{object}.
}
\seealso{
\code{\link{LinearEmbeddingMatrix}}
}
\author{
Davide Risso
}
\examples{
example(LinearEmbeddingMatrix, echo=FALSE) # Using the class example
show(lem)
}
 |