Reputation: 675
I try to use igraph package transferring from R to python. But I have one question. For instance, I want to use the graph.bfs function. In R, this function has many parameters. (http://www.inside-r.org/packages/cran/igraph/docs/graph.bfs) But in python-igraph, I only find the function bfs. (http://igraph.org/python/doc/igraph.GraphBase-class.html#bfs)
Did I miss the similar function in python-igraph or is igraph R package more perfect than python-igraph?
Upvotes: 1
Views: 1104
Reputation: 10825
While they are based on the same C library, the Python and R wrappers are somewhat different, so expect to have some differences. I would not say either of them is better or worse, they are just slightly different.
If there is a feature that is implemented in one language, but not in the other, then you can open an issue at the igraph issue tracker at https://github.com/igraph/igraph/issues and request it.
Upvotes: 4