networkfrom
Networkfrom is a term used in some graph-processing libraries to describe an operation that constructs a network graph from a dataset by identifying which records define edges between nodes. In typical implementations, networkfrom takes a data source such as a table or list of records and two fields that identify the endpoints of each relationship; optional fields may attach edge attributes like weight or type. The resulting object is a graph consisting of nodes (the unique endpoints) and edges (the relationships). The function may produce directed or undirected graphs, depending on the specified parameters.
Common usage patterns involve providing the data source and naming the key columns that represent the source
Variation and relation to other functions: networkfrom resembles other constructors that create graphs from edge lists
Applications and considerations: networkfrom is used to bootstrap networks from tabular data in social networks, transportation
See also: edge list constructors, adjacency list constructors, graph_from, NetworkX, igraph.