Calling doLouvainCluster yeilds the following error:
doLouvainCluster(go)
Error in igraph::as_data_frame(x = igraph_object, what = "edges") :
Not a graph object
This seems to be due to a call of get_NearestNetwork within doLouvainCluster_community(), which does not return an igraph object (and also throws up a depreciation message).
The following might work instead;
igraph_object = getNearestNetwork(gobject, nn_network_to_use = nn_network_to_use, network_name = network_name, output="igraph")
Calling doLouvainCluster yeilds the following error:
doLouvainCluster(go)
This seems to be due to a call of get_NearestNetwork within
doLouvainCluster_community()
, which does not return an igraph object (and also throws up a depreciation message).igraph_object = get_NearestNetwork(gobject, nn_network_to_use = nn_network_to_use, network_name = network_name)
The following might work instead;
igraph_object = getNearestNetwork(gobject, nn_network_to_use = nn_network_to_use, network_name = network_name, output="igraph")
Using Giotto_3.2
Thanks for a useful package!