Solved – Graph theory — analysis and visualization

data visualizationgraph theoryr

I am not sure the subject enters into the CrossValidated interest. You'll tell me.

I have to study a graph (from the graph theory)
ie.
I have a certain number of dots that are connected.
I have a table with all the dots and the dots each one is dependant on.
(I have also another table with the implications)

My questions are:
Is there a good software (or a R package) to study that easily?
Is there an easy way to display the graph?

Best Answer

iGraph is a very interesting cross-language (R, Python, Ruby, C) library. It allows you to work with unidirected and directed graphs and has quite a few analysis algorithms already implemented.

Related Question