The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
library(clustNet)First, we need to learn the networks. Here, we simulate data from three clusters. This process takes around two minutes on a local PC.
library(clustNet)
# Simulate data
k_clust <- 3 # numer of clusters
ss <- c(400, 500, 600) # samples in each cluster
simulation_data <- sampleData(k_clust = k_clust, n_vars = 20, n_samples = ss)
sampled_data <- simulation_data$sampled_data
# Network-based clustering
cluster_results <- get_clusters(sampled_data, k_clust = k_clust)We can visualize the networks as follows.
# Load additional pacakges to visualize the networks
library(ggplot2)
library(ggraph)
library(igraph)##
## Attaching package: 'igraph'
## The following objects are masked from 'package:stats':
##
## decompose, spectrum
## The following object is masked from 'package:base':
##
## union
library(ggpubr)
# Visualize networks
plot_clusters(cluster_results)Finally, we can create a density plot of our clustering.
# Load additional pacakges to create a 2d dimensionality reduction
library(car)## Loading required package: carData
library(ks)##
## Attaching package: 'ks'
## The following object is masked from 'package:igraph':
##
## compare
library(graphics)
library(stats)
# Plot a 2d dimensionality reduction
density_plot(cluster_results)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.