CommencerCommencer gratuitement

Extract PageRank features

In this exercise, you will compute a few PageRank scores and add them as features to the network.

When personalizing, use the prior churners in the network as the restart vector. That is, include the argument personalized = V(network)$Churn.

The default damping value is 0.85.

Cet exercice fait partie du cours

Predictive Analytics using Networked Data in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Compute the default PageRank score
V(network)$pr_0.85 <- page.rank(___)$vector
Modifier et exécuter le code