
(Deprecated.) Convert a ResIN network into an igraph object. Use as.igraph() method instead.
Source: R/ResIN_to_igraph.R
ResIN_to_igraph.RdDeprecated/legacy function. Transforms the output of the ResIN function into an [igraph](https://igraph.org/r/doc/cluster_leading_eigen.html) object. Now simply a wrapper for the as.igraph() method.
References
Csardi G, Nepusz T (2006). “The igraph software package for complex network research.” InterJournal, Complex Systems, 1695. https://igraph.org.
See also
as.igraph as the recommended interface.
Examples
## Load the 12-item simulated Likert-type ResIN toy dataset
data(lik_data)
## Run the function:
igraph_output <- as.igraph(ResIN(lik_data, plot_ggplot = FALSE))
class(igraph_output)
#> [1] "igraph"
## Plot and/or investigate as you wish:
# \donttest{
igraph::plot.igraph(igraph_output)
# }