1

Centrality data printed fine but the centrality plot command produced only a strength plot. There was no plot for closeness or betweenness -- how do I obtain the latter two?

I'm walking through the Costatini et al (2015) tutorial using RStudio with the supplied data: https://www.sciencedirect.com/science/article/pii/S0092656614000701

R & qgraph newbie working in RStudio.

centrality <- centrality_auto(network) centrality

nc <- centrality$node.centrality nc

ebc <- centrality$edge.betweenness.centrality ebc

centralityPlot(network)

gogo
  • 23
  • 5

1 Answers1

0

Here is the answer to your question. From Japan.

centralityPlot(network, include = c("Strength", "Betweenness", "Closeness"))
Abhinav Kumar
  • 2,883
  • 1
  • 17
  • 30
Take
  • 1
  • 1