Michał Bojanowski
Michał Bojanowski
Test is tripping: ``` Warning (test-dataframe.R:568:3): bipartite networks work 3 arguments not used by format '`bipartite` is `TRUE`, but the `vertices` you provided contain names that are not present in...
Warnings seem to be related to some deprecated **testthat** functions. Error comes from https://github.com/statnet/tergm/blob/15d8d2dca7250dbc61c6dba2bf3e72ac4511e4f5/tests/testthat/helper-CMLE.R#L213 which should be TRUE but comes out FALSE.
I have received this email from GitHub: 
`onefile_to_egor` seems to be very fragile to the column order in the input data frame. Consider the following input data frame which is two rows from GSS 2004: ```r dd
... instead of #24
`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...
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...
Computing segregation measures in the tidy framework of tidygraph. - As `tbl_graph` objects inherit from `igraph` objects they can be used directly. - It is not clear what should be...