Get startedGet started for free

Centrality features

In this exercise, you will compute and extract the centrality features betweenness, closeness, and eigenvector centrality.

This exercise is part of the course

Predictive Analytics using Networked Data in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Extract the betweenness
V(network)$betweenness <- ___(___, normalized=TRUE)
Edit and Run Code