I want to know what input type compareCluster supports? I performed fuzzy c-means clustering using Mfuzz & now i want to calculate enriched functional categories of each gene clusters.My initial data for clustering was of 91 uniprot ids across three time points.I did this after clustering to have uniprot ids & their cluster belonging-
dat <- data.frame(cl$cluster) colnames(dat)<-c("CLUSTER") write.csv(file="mfuzz.clusters.csv",dat,row.names=TRUE)
Example here which is from vignette - data(gcSample) ck <- compareCluster(geneCluster = gcSample, fun = "enrichKEGG") plot(ck)