I was trying to use the nbclust function and got the error: "Error in t(jeu) %*% jeu : requires numeric/complex matrix/vector arguments" this is how I run the function:
NbClust(input_data, diss = dissimilarity_matrix,
distance = NULL,
min.nc=2, max.nc=5, method = "ward.D2",
index = "all")
the error is probably because my data isn't numeric, but the dissimilarity matrix is. all the other clustering algorithms don't require a data matrix, is there a way to use the function without the data?