Learn R Programming

DrugClust (version 0.2)

RandomSeedGenerator: RandomSeedGenerator

Description

Initizalize seeds for the KSeeds clustering algorithm

Usage

RandomSeedGenerator(num_clusters, numbrowfeatures)

Arguments

num_clusters
number of clusters desired
numbrowfeatures
number of rows of the features matrix

Value

s list of seeds

Examples

Run this code
r <- 8
c <- 10
m0 <- matrix(0, r, c)
num_clusters=4
features<-apply(m0, c(1,2), function(x) sample(c(0,1),1))
s<-RandomSeedGenerator(4,nrow(features))

Run the code above in your browser using DataLab