Skip to main content

Memory-efficient library for loading and working with large unweighted multilayer networks.

Project description

MLN

Library for working with large multilayer networks.

Authors:

  • Eszter Bokányi
  • Rachel de Jong
  • Yuliia Kazmina

Contact: e.bokanyi@uva.nl

The code is distirbuted under the MIT Licence and should be properly attributed and cited upon reuse - see LICENCE.md for details.

MultiLayeredNetwork class

The MultiLayeredNetwork class from src/mln.py contains methods and attributes to work with a large multilayer network using different edge types and layers efficiently.

The network has to be unweighted, but can be directed.

The network is either loaded from an already saved sparse matrix and a node attribute CSV using the following attributes:

  • adjacency_file: scipy.sparse.csr matrix saved as an npz file
  • node_attribute_file: CSV to be loaded as a pd.DataFrame, rows in order of previous matrix rows should contain a column called "label" that is the primary key for node identification

Or in-memory objects can also be given to the constructor:

  • adjacency_matrix: scipy.sparse.csr matrix
  • node_attribute_dataframe: pd.DataFrame, rows in order of previous matrix rows

Pre-stored files with standard names can be called with the shorthand:

  • from_library: str Then the npz and csv.gz files will be read from the library_path/from_library folder similarly to the first method.

After loading these two key elements, class attributes and methods work the same.

The adjacency matrix self.A is stored in a scipy.sparse.csr_matrix class, that only saves nonzero elements, and on which scipy csgraph algorithms run. People are indexed from 0 to N-1, where N is the total number of nodes in this network.

Two dictionaries mapping user id (label) to integer node ids (NID) and back are created based on the node attribute file in the self.map_label_to_nid and self.map_nid_to_label attributes. These mappings only refer to one instance of the class - if you create a subgraph (see later) the coding is going to change, and the mapping should be found in the new instance that represents the subgraph.

The adjacency matrix contains integers that encode linktypes if viewed as binary numbers. Each possible linktype is assigned an integer of the form 2**i. For example, if both type i and type j edge is present between two people, then the corresponding value in self.A would be 2**i+2**j. It means that we can test for a certain edgetype using bitwise AND operation very cheaply. E.g. a certain element of self.A is 7, then 7=1+2+4 which means that edgetypes 0,1, and 2 are present between the two people, and 7&2 = 2 in Python (it behaves like a mask 111 & 010 = 010).

scipy.csr matrices are cheap to slice rowwise, but beware, some operation that seem straightforward in numpy might be costly (e.g. getting random coordinates after each other or colwise slicing)! If something is running too long, consult the scipy reference manual.

Node attributes are stored in self.node_attributes which is a pandas.DataFrame. It is possible to store human-readable or longer column names in self.attribute_colnames, and code tables for used variables in self.attribute_code_table, keys of that variable are the colnames in the values of self.attribute_colnames.

Example loadings:

# FROM FILES
# import custom class for the network from mln
from mlnlib.mln import MultiLayeredNetwork

# read the whole network
popnet = MultiLayeredNetwork(
    adjacency_file = 'path_to/adjacency.npz',
    node_attribute_file = 'path_to/attributes.csv.gz'
)

# FROM MEMORY
# import custom class for the network
from mlnlib.mln import MultiLayeredNetwork

# read the whole network
popnet = MultiLayeredNetwork(
    adjacency_matrix = A, # NxN scipy.sparse.csr_matrix
    node_attribute_file = df # pd.DataFrame containing N rows in the order of the matrix
)

# FROM LIBRARY
# import custom class for the network
from mlnlib.mln import MultiLayeredNetwork

# read the whole network
popnet = MultiLayeredNetwork(
    from_library="full"
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mlnlib-0.2.38.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mlnlib-0.2.38-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file mlnlib-0.2.38.tar.gz.

File metadata

  • Download URL: mlnlib-0.2.38.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mlnlib-0.2.38.tar.gz
Algorithm Hash digest
SHA256 d456ccafc162978ca23528e0949cab12fb0184c1564dfb15a7fea0af86781dfd
MD5 6213cabb6d3572f13979421ecd7f12bb
BLAKE2b-256 d7d1ba50fb11b18ee9aa8565f1bcf5c5bd11931e30991f01405dc4789ba03f77

See more details on using hashes here.

File details

Details for the file mlnlib-0.2.38-py3-none-any.whl.

File metadata

  • Download URL: mlnlib-0.2.38-py3-none-any.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mlnlib-0.2.38-py3-none-any.whl
Algorithm Hash digest
SHA256 e726d4afb6d67c8afbee6c38d55c0388ef00e38f24aed5d64502d2825e0d5905
MD5 bbc448242998a657daa15c1b0235ea00
BLAKE2b-256 afefeff147b35c233b51f880d9e7c7e83359bd994408cdf41e4bfd77e9a2faa3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page