intergraph icon indicating copy to clipboard operation
intergraph copied to clipboard

R package for converting network data objects between different classes

Results 6 intergraph issues
Sort by recently updated
recently updated
newest added

Add support for classes in graph package

enhancement

Moving https://github.com/statnet/network/issues/21#issuecomment-693513311 over here... @mbojan, friendly FYI: converting bipartite objects should now be simpler to implement. ``` r southern_women_affil_mat [11] e3--Charlotte e3--Frances e4--Evelyn e4--Theresa e4--Brenda #> [16] e4--Charlotte e5--Evelyn e5--Laura...

`asNetwork` and `asIgraph` do not handle lists as vertex or edge attributes. Need to add tests so that errors/warnings are triggered when trying to convert objects containing such attributes. Think...

bug
enhancement

Perhaps via some `*keep` and `*drop` arguments to `asIgraph` and `asNetwork`, e.g.: ``` r asIgraph(net, vdrop="na") # dropping 'na' vertex attribute ``` and so on...

enhancement