1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
useDynLib(apcluster)
import("methods")
importFrom("graphics",
"plot", "axis", "frame", "layout", "legend", "lines",
"pairs", "par", "points", "segments", "title")
importFrom("grDevices", "dev.flush", "dev.hold", "rainbow", "heat.colors")
importFrom("stats",
"cutree", "heatmap", "as.hclust", "as.dendrogram",
"cor", "median", "order.dendrogram", "quantile",
"rnorm", "runif")
importFrom("Rcpp", "evalCpp")
import("Matrix")
export("apclusterDemo", "negDistMat", "expSimMat", "corSimMat", "linSimMat",
"linKernel")
exportClasses("APResult", "AggExResult", "ExClust")
exportMethods("show", "plot", "heatmap", "labels", "cutree", "[", "[[",
"similarity", "as.hclust", "as.dendrogram", "length",
"apcluster", "apclusterL", "apclusterK", "aggExCluster",
"preferenceRange", "as.SparseSimilarityMatrix",
"as.DenseSimilarityMatrix")
S3method("sort", "ExClust")
|