# Simulation of 15 observations belonging to 3 groups
set.seed(1)
simul <- SimulateClustering(
n = c(5, 5, 5), pk = 100
)
# Running hierarchical clustering
myclust <- ClusteringAlgo(
xdata = simul$data, nc = 2:5,
implementation = HierarchicalClustering
)
Run the code above in your browser using DataLab