SparkseePython
6.0.2
|
CommunitiesSCD class. More...
Public Member Functions | |
def | __init__ (self, session) |
Creates a new instance of CommunitiesSCD. More... | |
def | exclude_nodes (self, nodes) |
Set which nodes can't be used. More... | |
def | add_all_edge_types (self) |
Allows connectivity through all edge types of the graph. More... | |
def | get_communities (self) |
Returns the results generated by the execution of the algorithm. More... | |
def | run (self) |
Executes the algorithm. | |
def | add_edge_type (self, type) |
Allows connectivity through edges of the given type. More... | |
def | exclude_edges (self, edges) |
Set which edges can't be used. More... | |
def | set_materialized_attribute (self, attribute_name) |
Creates a new common attribute type for all node types in the graph in order to store, persistently, the results related to the disjoint communities found while executing this algorithm. More... | |
def | add_node_type (self, type) |
Allows connectivity through nodes of the given type. More... | |
def | include_nodes (self, nodes) |
Set additional nodes that can be used. More... | |
def | set_look_ahead (self, lookahead) |
Sets the size of the lookahead iterations to look (5 by default). More... | |
def | add_all_node_types (self) |
Allows connectivity through all node types of the graph. | |
def | include_edges (self, edges) |
Set additional edges that can be used. More... | |
def | close (self) |
Closes the CommunityDetection instance. More... | |
def | is_closed (self) |
Gets if CommunityDetection has been closed or not. More... | |
CommunitiesSCD class.
Implementation of the community detection algorithm "Scalable Community Detection" based on the paper "High quality, scalable and parallel community detection for large real graphs" by Arnau Prat-Perez, David Dominguez-Sal, Josep-Lluis Larriba-Pey - WWW 2014.
The purpose of this algorithm is to find disjoint communities in an undirected graph or in a directed graph which will be considered as an undirected one.
It is possible to set some restrictions after constructing a new instance of this class and before running it in order to limit the results.
After the execution, we can retrieve the results stored in an instance of the DisjointCommunities class using the getCommunities method.
Check out the 'Algorithms' section in the SPARKSEE User Manual for more details on this.
def sparksee.CommunitiesSCD.__init__ | ( | self, | |
session | |||
) |
Creates a new instance of CommunitiesSCD.
After creating this instance is required to indicate the set of edge types and the set of node types which will be navigated through while traversing the graph in order to find the communities.
session | [in] Session to get the graph from and calculate the communities |
def sparksee.CommunitiesSCD.add_all_edge_types | ( | self | ) |
Allows connectivity through all edge types of the graph.
The edges can be used in Any direction.
def sparksee.CommunitiesSCD.add_edge_type | ( | self, | |
type | |||
) |
Allows connectivity through edges of the given type.
The edges can be used in Any direction.
type | [in] Edge type. |
def sparksee.CommunitiesSCD.add_node_type | ( | self, | |
type | |||
) |
Allows connectivity through nodes of the given type.
type | null |
|
inherited |
Closes the CommunityDetection instance.
It must be called to ensure the integrity of all data.
def sparksee.CommunitiesSCD.exclude_edges | ( | self, | |
edges | |||
) |
Set which edges can't be used.
This will replace any previously specified set of excluded edges. Should only be used to exclude the usage of specific edges from allowed edge types because it's less efficient than not allowing an edge type.
edges | [in] A set of edge identifiers that must be kept intact until the destruction of the class. |
def sparksee.CommunitiesSCD.exclude_nodes | ( | self, | |
nodes | |||
) |
Set which nodes can't be used.
This will replace any previously specified set of excluded nodes. Should only be used to exclude the usage of specific nodes from allowed node types because it's less efficient than not allowing a node type.
nodes | [in] A set of node identifiers that must be kept intact until the destruction of the class. |
def sparksee.CommunitiesSCD.get_communities | ( | self | ) |
Returns the results generated by the execution of the algorithm.
These results contain information related to the disjoint communities found as the number of different components, the set of nodes contained in each component or many other data.
def sparksee.CommunitiesSCD.include_edges | ( | self, | |
edges | |||
) |
Set additional edges that can be used.
This will replace any previously specified set of include edges. Using this optional method adds valid edges to the edges of any edge type explicitly set as a valid type. Should only be used to include specific small sets of edges because it's less efficient than just using an edge type. For any edge to be used, both nodes must be also valid.
edges | [in] A set of edge identifiers that must be kept intact until the destruction of the class. |
def sparksee.CommunitiesSCD.include_nodes | ( | self, | |
nodes | |||
) |
Set additional nodes that can be used.
This will replace any previously specified set of include nodes. Using this optional method adds valid nodes to the nodes of any node type explicitly set as a valid type. Should only be used to include specific small sets of nodes because it's less efficient than just using a node type.
nodes | [in] A set of node identifiers that must be kept intact until the destruction of the class. |
|
inherited |
Gets if CommunityDetection has been closed or not.
def sparksee.CommunitiesSCD.set_look_ahead | ( | self, | |
lookahead | |||
) |
Sets the size of the lookahead iterations to look (5 by default).
lookahead | [in] Number of iterations. It must be positive or zero. |
def sparksee.CommunitiesSCD.set_materialized_attribute | ( | self, | |
attribute_name | |||
) |
Creates a new common attribute type for all node types in the graph in order to store, persistently, the results related to the disjoint communities found while executing this algorithm.
Whenever the user wants to retrieve the results, even when the graph has been closed and opened again, it is only necessary to create a new instance of the class DisjointCommunities indicating the graph and the name of the common attribute type which stores the results. This instance will have all the information related to the disjoint communities found in the moment of the execution of the algorithm that stored this data.
It is possible to run the algorithm without specifying this parameter in order to avoid materializing the results of the execution.
attribute_name | [in] The name of the common attribute type for all node types in the graph which will store persistently the results generated by the execution of the algorithm. |