License: GPL v3 Depends GitHub code size in bytes HitCount

Overview

Installation

Features

Syntax

Action/Metric Proposed Syntax Related {statnet} Syntax Related {igraph} Syntax
is network directed? net_is_directed() network::is.directed() igraph::is_directed()
igraph::is.directed()
are a network’s edges weighted? net_is_weighted() igraph::is_weighted()
igraph::is.weighted()
is a network multiplex? net_is_multiplex() network::is.multiplex() igraph::any_multiple()
is a network bipartite? net_is_bipartite() network::is.bipartite() igraph::is_bipartite()
igraph::is.bipartite()
does a network have isolates? net_has_isolates()
does a network have loops? net_has_loops() igraph::which_loop()
igraph::is.loop()
get node attribute node_get_attr() network::get.vertex.attribute()
network::'%vattr%'()
network::'%v%'()
igraph::V()
igraph::vertex_attr()
igraph::get.vertex.attribute()
igraph::vertex.attributes()
get node names node_get_names() network::network.vertex.names()
does a node attribute exist? node_attr_exists()
get names of all node attributes node_get_attr_names() network::list.vertex.attributes() igraph::vertex_attr_names()
igraph::list.vertex.attributes()
get edge attribute edge_get_attr() network::get.edge.attribute()
network::'%eattr%'()
network::'%e%'()
igraph::edge_attr()
igraph::get.edge.attribute()
igraph::edge.attributes()
does an edge attribute exist? edge_attr_exists()
get names of all edge attributes edge_get_attr_names() network::list.edge.attributes() igraph::edge_attr_names()
igraph::list.edge.attributes()
degree node_cent_degree() sna::degree() igraph::degree()
closeness node_cent_closeness() sna::closeness() igraph::closeness()
betweenness node_cent_betweenness() sna::betweenness() igraph::betweenness()
eigenvector node_cent_eigenvector() igraph::eigen_centrality()$vector
igraph::evcent()$vector
average reciprocal distance node_cent_avg_reciprocal_distance()
order topo_order() network::network.size() igraph::vcount()
igraph::gorder()
size topo_size() network::network.edgecount() igraph::ecount()
EI index topo_ei_index()
density topo_density() sna::gden() igraph::edge_density()
igraph::graph.density()
average degree topo_average_degree()
average distance topo_average_distance() igraph::mean_distance()
igraph::average.path.length()
diameter topo_diameter() igraph::diameter()
igraph::get_diameter()
igraph::get.diameter()
centralization topo_centralization() sna::centralization() igraph::centr_*()
igraph::centr_*_tmax()
igraph::centralization.*()
igraph::centralization.*.tmax()
cohesion topo_cohesion() igraph::cohesion()
compactness topo_compactness()
fragmentation topo_fragmentation()
reciprocity topo_reciprocity() sna::grecip() igraph::reciprocity()
transitivity topo_transitivity() sna::gtrans() igraph::transitivity()
Moran’s I topo_morans_i()
Gerry’s C topo_gerrys_c()