Package igraph :: Module datatypes :: Class TriadCensus
[hide private]
[frames] | no frames]

Class TriadCensus

object --+    
         |    
     tuple --+
             |
            TriadCensus

Triad census of a graph.

This is a pretty simple class - basically it is a tuple, but it allows the user to refer to its individual items by the following triad names:

Attribute and item accessors are provided. Due to the syntax of Python, attribute names are not allowed to start with a number, therefore the triad names must be prepended with a lowercase t when accessing them as attributes. This is not necessary with the item accessor syntax.

Examples:

>>> g=Graph.Erdos_Renyi(100, 0.2, directed=True)
>>> tc=g.triad_census()
>>> print tc.t003
39864
>>> print tc["030C"]
1206
Instance Methods [hide private]
 
__getattr__(self, attr)
 
__getitem__(self, idx)
x[y]
 
__repr__(self)
repr(x)
 
__str__(self)
str(x)

Inherited from tuple: __add__, __contains__, __eq__, __ge__, __getattribute__, __getnewargs__, __getslice__, __gt__, __hash__, __iter__, __le__, __len__, __lt__, __mul__, __ne__, __new__, __rmul__

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__

Class Variables [hide private]
  _remap = {'003': 0, '012': 1, '021C': 5, '021D': 3, '021U': 4,...
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__getitem__(self, idx)
(Indexing operator)

 

x[y]

Overrides: tuple.__getitem__
(inherited documentation)

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)

Class Variable Details [hide private]

_remap

Value:
{'003': 0,
 '012': 1,
 '021C': 5,
 '021D': 3,
 '021U': 4,
 '030C': 9,
 '030T': 8,
 '102': 2,
...