kiara plugin: network_analysis¶
This package contains a set of commonly used/useful modules, pipelines, types and metadata schemas for Kiara.
Description¶
kiara data types and modules for network analysis
Package content¶
data_types¶
network_data
: Data that can be assembled into a graph.
module_types¶
-
network_data.filters
: -- n/a -- -
export.network_data
: Export network data items. -
create.network_data
: -- n/a -- -
network_data.redefine_edges
: Redefine edges by merging duplicate edges and applying aggregation functions to certain edge attributes. -
network_data.extract_components
: Extract the largest connected component from this network data. -
network_data.extract_cut_points
: Create a list of nodes that are cut-points. -
assemble.network_data
: Create a 'network_data' instance from one or two tables.
kiara_model_types¶
-
network_graph_properties
: Network data stats. -
instance.network_data
: A helper class to access and query network datasets. -
input.attribute_map_strategy
: -- n/a -- -
metadata.network_node_attribute
: -- n/a -- -
metadata.network_edge_attribute
: -- n/a --
operations¶
-
assemble.network_data
: Create a 'network_data' instance from one or two tables. -
create.network_data.from.file
: Create a table from a file, trying to auto-determine the format of said file. -
export.network_data.as.adjlist_file
: Export network data as adjacency list file. -
export.network_data.as.edgelist_file
: Export network data as edgelist file. -
export.network_data.as.gexf_file
: Export network data as gexf file. -
export.network_data.as.graphml_file
: Export network data as graphml file. -
export.network_data.as.multiline_adjlist_file
: Export network data as multiline adjacency list file. -
export.network_data.as.network_text_file
: Export network data as network text file (with a '.network' extension). -
network_data.extract_components
: Extract the largest connected component from this network data. -
network_data.extract_cut_points
: Create a list of nodes that are cut-points. -
network_data.redefine_edges
: Redefine edges by merging duplicate edges and applying aggregation functions to certain edge attributes. -
network_data_filter.component
: Retrieve a single sub-component from a network data object.