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)