-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNAMESPACE
104 lines (103 loc) · 2.87 KB
/
NAMESPACE
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Export
#
# Clustering algorithms
export(ADPclustering)
export(AgglomerativeNestingClustering)
export(APclustering)
export(AutomaticProjectionBasedClustering)
#export(ConsensusClustering) #doku is corrupted at the moment
export(CrossEntropyClustering)
export(DatabionicSwarmClustering)
export(DBSCAN)
export(DensityPeakClustering)
export(DivisiveAnalysisClustering)
export(FannyClustering)
export(GenieClustering)
export(HCLclustering)
export(HDDClustering)
export(HierarchicalClustering)
export(HierarchicalDBSCAN)
export(kmeansClustering)
export(LargeApplicationClustering)
export(MarkovClustering)
export(MinimalEnergyClustering)
export(MinimaxLinkageClustering)
export(MeanShiftClustering)
export(ModelBasedClustering)
export(ModelBasedVarSelClustering)
export(MoGclustering)
export(MSTclustering)
export(NeuralGasClustering)
export(NetworkClustering)
export(OPTICSclustering)
export(PAMclustering)
export(pdfClustering)
export(PenalizedRegressionBasedClustering)
export(ProjectionPursuitClustering)
export(QTclustering)
export(RandomForestClustering)
export(RobustTrimmedClustering)
export(SharedNearestNeighborClustering)
export(SOMclustering)
export(SOTAclustering)
export(SparseClustering)
export(SpectralClustering)
export(Spectrum)
export(SubspaceClustering)
export(TandemClustering)
#
# Applications
export(ClusterabilityMDplot)
export(ClusterAccuracy)
export(ClusterApply)
export(ClusterChallenge)
export(ClusterCount)
export(ClusterCreateClassification)
export(ClusterEqualWeighting)
export(ClusterDendrogram)
export(ClusterDunnIndex)
export(ClusterDaviesBouldinIndex)
export(ClusterDistances)
export(ClusterIntraDistances)
export(ClusterInterDistances)
export(ClusterMCC)
export(ClusterNoEstimation)
export(ClusterNormalize)
export(ClusterPlotMDS)
export(ClusterRename)
export(ClusterRedefine)
export(ClusterShannonInfo)
export(ClusterRenameDescendingSize)
export(ClusterUpsamplingMinority)
export(EntropyOfDataField)
export(EstimateRadiusByDistance)
export(parApplyDistanceBasedCA)
export(parApplyDataBasedCA)
export(GapStatistic)
#some ggplot unresolved issue requires this
export(StatPDEdensity)
#
# Import
#
import(DataVisualizations)
import(ggplot2)
# QMS
#import(matrixStats)
#
importFrom('stats', hclust,cutree,kmeans,as.dendrogram,rect.hclust)
#importFrom('cclust', cclust)
#importFrom('kernlab', specc)
#importFrom('vegan', spantree, spandepth)
importFrom("graphics", "axis", "plot")
importFrom("stats", "as.dist", "cmdscale", "dist", "na.omit")
importFrom("mclust", "mclustBIC", "Mclust","mclust.options")
importFrom("graphics", "hist")
importFrom("stats","complete.cases", "cov", "dist", "pf","sd", "cutree", "hclust", "kmeans")
importFrom("stats", "as.hclust", "quantile","is.leaf")
importFrom("utils", "head")
importFrom("stats", "prcomp", "runif")
importFrom("stats", "cor")
importFrom("stats", "order.dendrogram")
importFrom("utils", "tail")
importFrom("stats", "median")
importFrom("graphics", "title")