data_types
network_data
¶
type_name | network_data | The registered name for this item type. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
documentation | Data that can be assembled into a graph. This data type extends the 'tables' type from the kiara_plugin.tabular plugin, restricting the allowed tables to one called 'edges', and one called 'nodes'. EdgesThe 'edges' table contains the following columns: _edge_id: The unique id for the edge. _source: The node id of the source for an edge. _target: The node id of the target for an edge. _count_dup_directed: The number of edges that have the same source/target combination as this (incl. this), if the network_data is interpreted as directed multi graph. _idx_dup_directed: A unique index for this edge within its set of duplicates, if the network_data is interpreted as directed multi graph. This is a unique integer identifier in combination with (_source/_target), counting up from 1. The order of the edges within this set is not guaranteed. _count_dup_undirected: The number of edges that have the same source/target combination as this (incl. this), if the network_data is interpreted as undirected multi graph. _idx_dup_undirected: A unique index for this edge within its set of duplicates, if the network_data is interpreted as undirected multi graph. This is a unique integer identifier in combination with (_source/_target), counting up from 1. The order of the edges within this set is not guaranteed. NodesThe 'nodes' table contains the following columns: _node_id: The unique id for the node. This is a unique integer identifier (counting up from 0) and is automatically generated by kiara, for each _label: The label for the node. This is a (potentially non-unique) (ideally) human meaningful lable for the node, mostly used in visualizations. Depending on how the 'network_data' was created, this could be a name, title, etc. If no such label was available or specified by the user, the node id will be used as label. _count_edges: The number of edges that are connected to this node if the network_data is interpreted as a non-multi graph Both incoming and outgoing edges are counted, which means that the number is valid for both directed and undirected graphs. . _count_edges_multi: The number of edges that are connected to this node if the network_data is interpreted as a multi graph Both incoming and outgoing edges are counted, which means that the number is valid for both directed and undirected graphs. _in_edges: The number of incoming edges that are connected to this node if the network_data is interpreted as a non-multi graph. _in_edges_multi: The number of incoming edges that are connected to this node if the network_data is interpreted as a multi graph. _out_edges: The number of outgoing edges that are connected to this node if the network_data is interpreted as a non-multi graph. _out_edges_multi: The number of outgoing edges that are connected to this node if the network_data is interpreted as a multi graph. |
Documentation for the item. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
authors |
|
Information about authorship for the item. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context |
|
Generic properties of this item (description, tags, labels, references, ...). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
python_class |
|
The python class that implements this module type. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
value_cls |
|
The python class of the value itself. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data_type_config_cls |
|
The python class holding the schema for configuring this type. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
lineage |
|
This types lineage. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
qualifier_profiles | A map of qualifier profiles for this data types. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
supported_properties |
|
The supported property types for this data type. |