https://github.com/ctlab/phantasus
Revision 8023a5f6aced9abad56d7686dec85bb16a054895 authored by Alexey Sergushichev on 13 May 2020, 17:56:06 UTC, committed by GitHub on 13 May 2020, 17:56:06 UTC
* Update .travis.yml
1 parent 5ae6e3d
Raw File
Tip revision: 8023a5f6aced9abad56d7686dec85bb16a054895 authored by Alexey Sergushichev on 13 May 2020, 17:56:06 UTC
Travis fix 1 (#154)
Tip revision: 8023a5f
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