I am using R and the IGraph package.
my approach is a community detection algorithm based on the eigenvectors centrality . To assess the results of my algorithm, I will use the following evaluation metrics: NMI (Normalized Mutual Information), Purity, ARI (Adjusted Rand Index). but these parameters require the comparison of two communities structures.
compare(comm1, comm2, method = c("vi", "nmi","split.join", "rand","adjusted.rand"))
Can you offer me one or two algorithms with which I could compare my own?
And how can i get the Purity metric?
Thanks you