ResIN_to_gephi {ResIN} | R Documentation |
Saves a ResIN graph as a series of csv files readable by Gephi. Source code taken from RMHogervorst / gephi
ResIN_to_gephi(ResIN_object, file = "ResIN_gephi.csv")
ResIN_object |
the output of the ResIN function (a list with class ResIN). |
file |
the name with .csv extension for the Gephi readable file to be output at. Defaults to "ResIN_gephi.csv". |
A series of csv files readable by Gephi
Source code was taken from: https://github.com/RMHogervorst/gephi?tab=MIT-1-ov-file#readme
## Not run:
## Load the 12-item simulated Likert-type ResIN toy dataset
data(lik_data)
## Run the function:
ResIN_to_gephi(ResIN(lik_data), file = "ResIN_gephi.csv")
## End(Not run)