https://github.com/ctlab/phantasus
Raw File
Tip revision: 3060d2b3ea45059741f3612cf8273a125315b3ac authored by Nitesh Turaga on 27 October 2020, 15:33:27 UTC
bump x.y.z version to odd y following creation of RELEASE_3_12 branch
Tip revision: 3060d2b
calcPCA.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/calcPCA.R
\name{calcPCA}
\alias{calcPCA}
\title{Principal Component Analysis.}
\usage{
calcPCA(es, replacena = "mean")
}
\arguments{
\item{es}{an ExpressionSet object, should be normalized}

\item{replacena}{method for replacing NA values (mean by default)}
}
\value{
json with full description of the plot for plotly.js
}
\description{
\code{calcPCA} calculates PCA-matrix for the given ExpressionSet
    and returns this matrix encoded to JSON.
}
\examples{
\dontrun{
data(es)
calcPCA(es)
}
}
back to top