https://github.com/ctlab/phantasus
Revision a76fa6073ce1e42d34edeae5a644ee2ff513c115 authored by Alexey Sergushichev on 08 July 2020, 16:03:02 UTC, committed by Alexey Sergushichev on 08 July 2020, 16:03:02 UTC
2 parent s 5766032 + 24584c8
Raw File
Tip revision: a76fa6073ce1e42d34edeae5a644ee2ff513c115 authored by Alexey Sergushichev on 08 July 2020, 16:03:02 UTC
Merge branch 'master' into develop
Tip revision: a76fa60
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