sssalcedo
sssalcedo

Reputation: 1

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘rio’

there is no package called ‘rio’. Is there any package that contains it?

df <- scale(gemaps_88)     # Standardize the data
res.fanny <- fanny(df, 2)  # Compute fuzzy clustering with k = 2



df <- scale(c_matrix)     # Standardize the data
res.fanny <- fanny(df, 2)  
head(res.fanny$membership, 3) # Membership coefficients

res.fanny$coeff # Dunn's partition coefficient

head(res.fanny$clustering) # Observation groups

library(factoextra)
fviz_silhouette(res.fanny, palette = "jco",
                ggtheme = theme_minimal())

Upvotes: 0

Views: 121

Answers (0)

Related Questions