https://github.com/ctlab/phantasus
Revision a52dacc6da164ea2e8d3b545909638a1f7b1963f authored by Maksim Kleverov on 18 October 2021, 07:25:02 UTC, committed by Space on 18 October 2021, 07:25:02 UTC
1 parent fd649a3
Raw File
Tip revision: a52dacc6da164ea2e8d3b545909638a1f7b1963f authored by Maksim Kleverov on 18 October 2021, 07:25:02 UTC
split job to steps (check shared files)
Tip revision: a52dacc
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