igraph library.
Module | adjacency |
No module docstring; 5/5 functions documented |
Package | app |
User interfaces of igraph |
Module | automorphisms |
No module docstring; 2/2 functions documented |
Module | basic |
No module docstring; 8/8 functions documented |
Module | bipartite |
No module docstring; 3/3 functions documented |
Module | clustering |
Classes related to graph clustering. |
Module | community |
No module docstring; 13/13 functions documented |
Module | configuration |
Configuration framework for igraph. |
Module | cut |
Classes representing cuts and flows on graphs. |
Module | datatypes |
Additional auxiliary data types |
Package | drawing |
Drawing and plotting routines for igraph. |
Module | formula |
Implementation of igraph.Graph.Formula() . |
Package | io |
Undocumented |
Module | layout |
Layout-related code in the igraph library. |
Module | matching |
Classes representing matchings on graphs. |
Package | operators |
Implementation of union, disjoint union and intersection operators. |
Package | remote |
Classes that help igraph communicate with remote applications. |
Module | seq |
No module docstring; 1/2 function documented |
Module | sparse |
Implementation of Python-level sparse matrix operations. |
Module | statistics |
Statistics related stuff in igraph |
Module | structural |
No module docstring; 5/5 functions documented |
Module | summary |
Summary representation of a graph. |
Module | utils |
Utility functions that cannot be categorised anywhere else. |
Module | version |
Undocumented |
Module | _igraph |
Low-level Python interface for the igraph library. Should not be used directly. |
From __init__.py
:
Class |
|
Class representing the parameters of the ARPACK module. |
Class |
|
igraph BFS iterator object |
Class |
|
A cut of a given graph. |
Class |
|
igraph DFS iterator object |
Class |
|
Class representing a single edge in a graph. |
Class |
|
Class representing a sequence of edges in the graph. |
Class |
|
Generic graph. |
Class |
|
Low-level representation of a graph. |
Class |
|
Undocumented |
Class |
|
A matching of vertices in a graph. |
Class |
|
Class representing a single vertex in a graph. |
Class |
|
Class representing a sequence of vertices in the graph. |
Function | community |
Undocumented |
Function | convex |
Calculates the convex hull of a given point set. |
Function | deprecated |
Prints a warning message related to the deprecation of some igraph feature. |
Function | get |
Returns the folder that contains the C API headers of the Python interface of igraph. |
Function | is |
Deprecated since 0.9 in favour of is_graphical() . |
Function | is |
Deprecated since 0.9 in favour of is_graphical() . |
Function | read |
Loads a graph from the given filename. |
Function | set |
Sets the handler to be called when igraph is performing a long operation. |
Function | set |
Sets the random number generator used by igraph. |
Function | set |
Sets the handler to be called when igraph tries to display a status message. |
Function | write |
Saves a graph to the given file. |
Variable | __license__ |
Undocumented |
Variable | config |
The main configuration object of igraph. Use this object to modify igraph's behaviour, typically when used in interactive mode. |
Calculates the convex hull of a given point set.
Parameters | |
vs | the point set as a list of lists |
coords | if True, the function returns the coordinates of the corners of the convex hull polygon, otherwise returns the corner indices. |
Returns | |
either the hull's corner coordinates or the point indices corresponding to them, depending on the coords parameter. |
Deprecated since 0.9 in favour of is_graphical()
.
Returns whether a list of degrees can be a degree sequence of some graph.
Note that it is not required for the graph to be simple; in other words, this function may return True for degree sequences that can be realized using one or more multiple or loop edges only.
In particular, this function checks whether
- all the degrees are non-negative
- for undirected graphs, the sum of degrees are even
- for directed graphs, the two degree sequences are of the same length and equal sums
Parameters | |
out | the list of degrees. For directed graphs, this list must contain the out-degrees of the vertices. |
in | the list of in-degrees for directed graphs. This parameter must be None for undirected graphs. |
Returns | |
True if there exists some graph that can realize the given degree sequence, False otherwise. |
Deprecated since 0.9 in favour of is_graphical()
.
Returns whether a list of degrees can be a degree sequence of some simple graph.
Note that it is required for the graph to be simple; in other words, this function will return False for degree sequences that cannot be realized without using one or more multiple or loop edges.
Parameters | |
out | the list of degrees. For directed graphs, this list must contain the out-degrees of the vertices. |
in | the list of in-degrees for directed graphs. This parameter must be None for undirected graphs. |
Returns | |
True if there exists some simple graph that can realize the given degree sequence, False otherwise. |
Sets the handler to be called when igraph is performing a long operation.
Parameters | |
handler | the progress handler function. It must accept two arguments, the first is the message informing the user about what igraph is doing right now, the second is the actual progress information (a percentage). |
Sets the random number generator used by igraph.
Parameters | |
generator | the generator to be used. It must be a Python object with at least three attributes: random, randint and gauss. Each of them must be callable and their signature and behaviour must be identical to random.random, random.randint and random.gauss. By default, igraph uses the random module for random number generation, but you can supply your alternative implementation here. If the given generator is None, igraph reverts to the default Mersenne twister generator implemented in the C layer, which might be slightly faster than calling back to Python for random numbers, but you cannot set its seed or save its state. |
Sets the handler to be called when igraph tries to display a status message.
This is used to communicate the progress of some calculations where no reasonable progress percentage can be given (so it is not possible to use the progress handler).
Parameters | |
handler | the status handler function. It must accept a single argument, the message that informs the user about what igraph is doing right now. |
Loads a graph from the given filename.
This is just a convenience function, calls Graph.Read
directly. All arguments are passed unchanged to Graph.Read
Parameters | |
filename | the name of the file to be loaded |
*args | Undocumented |
**kwds | Undocumented |
Saves a graph to the given file.
This is just a convenience function, calls Graph.write
directly. All arguments are passed unchanged to Graph.write
Parameters | |
graph | the graph to be saved |
filename | the name of the file to be written |
*args | Undocumented |
**kwds | Undocumented |
The main configuration object of igraph. Use this object to modify igraph's behaviour, typically when used in interactive mode.