Revision c456f79a39dbaf3a4522516b5357d697e4780c42 authored by Vladislav Kamenev on 31 July 2018, 09:51:51 UTC, committed by Vladislav Kamenev on 31 July 2018, 09:51:51 UTC
This reverts commit 2c053b597041bf04e31de4e71dd22f31f0ec6b52.
1 parent b573534
Raw File
performKmeans.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/performKmeans.R
\name{performKmeans}
\alias{performKmeans}
\title{K-means clusterisation.}
\usage{
performKmeans(es, k, replacena = "mean")
}
\arguments{
\item{es}{ExpressionSet object.}

\item{k}{Expected number of clusters.}

\item{replacena}{Method for replacing NA values
in series matrix (mean by default)}
}
\value{
Vector of corresponding clusters, serialized to JSON.
}
\description{
\code{performKmeans} returns a vector of corresponding clusters for
    each gene from a given ExpressionSet.
}
\examples{
\dontrun{
data(es)
performKmeans(es, k = 2)
}
}
back to top