knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = module
)
print(module)
#> [1] TRUE
In this guide we will run the Leiden algorithm in both R and Python to benchmark performance and demonstrate how the algorithm is called with reticulate
.
We are testing this in the following environment:
paste(Sys.info()[c(4, 2, 1)])
#> [1] "n110" "4.18.0-372.26.1.el8_6.x86_64"
#> [3] "Linux"
R.version$version.string
#> [1] "R version 4.2.2 (2022-10-31)"
This package allows calling the Leiden algorithm for clustering on an igraph object from R. See the Python and Java implementations for more details:
https://github.com/CWTSLeiden/networkanalysis
https://github.com/vtraag/leidenalg
It calls the Python functions to run the algorithm and passes all arguments need to them.
The python version can be installed with pip or conda:
pip uninstall -y igraph
pip install -U -q leidenalg
conda install -c vtraag leidenalg
It is also possible to install the python dependencies with reticulate in R.
library("reticulate")
py_install("python-igraph")
py_install("leidenalg")
We are using the following version of Python:
import sys
print(sys.version)
#> 3.9.6 | packaged by conda-forge | (default, Jul 11 2021, 03:53:41)
#> [GCC 9.3.0]
First we load the packages:
import igraph as ig
print("igraph", ig.__version__)
#> igraph 0.9.6
import leidenalg as la
print("leidenalg", la.version)
#> leidenalg 0.8.7
Then we load the Zachary karate club example data from igraph.
G = ig.Graph.Famous('Zachary')
G.summary()
#> 'IGRAPH U--- 34 78 -- '
partition = la.find_partition(G, la.ModularityVertexPartition)
print(partition)
#> Clustering with 34 elements and 4 clusters
#> [0] 8, 9, 14, 15, 18, 20, 22, 26, 29, 30, 32, 33
#> [1] 0, 1, 2, 3, 7, 11, 12, 13, 17, 19, 21
#> [2] 23, 24, 25, 27, 28, 31
#> [3] 4, 5, 6, 10, 16
partition
#> <leidenalg.VertexPartition.ModularityVertexPartition object at 0x7fafbfa8c070>
partition.membership
#> [1, 1, 1, 1, 3, 3, 3, 1, 0, 0, 3, 1, 1, 1, 0, 0, 3, 1, 0, 1, 0, 1, 0, 2, 2, 2, 0, 2, 2, 0, 0, 2, 0, 0]
partition <- py$partition$membership + 1
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
library("igraph")
#>
#> Attaching package: 'igraph'
#> The following objects are masked from 'package:stats':
#>
#> decompose, spectrum
#> The following object is masked from 'package:base':
#>
#> union
library("reticulate")
library("RColorBrewer")
graph_object <- graph.famous("Zachary")
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(graph_object, vertex.color = node.cols, layout=layout_with_kk)
We can reproduce passing arguments in this manner as well.
partition = la.find_partition(G, la.CPMVertexPartition, resolution_parameter = 0.05)
print(partition)
#> Clustering with 34 elements and 2 clusters
#> [0] 8, 14, 15, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33
#> [1] 0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 16, 17, 19, 21
partition
#> <leidenalg.VertexPartition.CPMVertexPartition object at 0x7fafbfa77c10>
partition.membership
#> [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
partition <- py$partition$membership + 1
table(partition)
#> partition
#> 1 2
#> 17 17
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
graph_object <- graph.famous("Zachary")
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(graph_object, vertex.color = node.cols, layout=layout_with_kk)
We can run the RBC vertex method which generalises the modularity vertex partition.
partition = la.find_partition(G, la.RBConfigurationVertexPartition, resolution_parameter = 1.5)
print(partition)
#> Clustering with 34 elements and 5 clusters
#> [0] 0, 1, 2, 3, 7, 11, 12, 13, 17, 19, 21
#> [1] 9, 14, 15, 18, 20, 22, 26, 29, 32, 33
#> [2] 23, 24, 25, 27, 28, 31
#> [3] 4, 5, 6, 10, 16
#> [4] 8, 30
partition
#> <leidenalg.VertexPartition.RBConfigurationVertexPartition object at 0x7fafbfd68f40>
partition.membership
#> [0, 0, 0, 0, 3, 3, 3, 0, 4, 1, 3, 0, 0, 0, 1, 1, 3, 0, 1, 0, 1, 0, 1, 2, 2, 2, 1, 2, 2, 1, 4, 2, 1, 1]
partition <- py$partition$membership + 1
table(partition)
#> partition
#> 1 2 3 4 5
#> 11 10 6 5 2
We can plot the result in R to show it in the network.
graph_object <- graph.famous("Zachary")
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(graph_object, vertex.color = node.cols, layout=layout_with_kk)
Now we can time how long the computation of the algorithm takes (for 1000 runs) running within python:
import time
G = ig.Graph.Famous('Zachary')
G.summary()
#> 'IGRAPH U--- 34 78 -- '
start = time.time()
for ii in range(100):
partition = la.find_partition(G, la.ModularityVertexPartition)
end = time.time()
partition.membership
#> [0, 0, 0, 0, 3, 3, 3, 0, 1, 0, 3, 0, 0, 0, 1, 1, 3, 0, 1, 0, 1, 0, 1, 2, 2, 2, 1, 2, 2, 1, 1, 2, 1, 1]
py_time = end - start
print("leiden time:", py_time, "seconds")
#> leiden time: 0.022825241088867188 seconds
bash_py_time=`python -c 'import igraph as ig
import leidenalg as la
import time
G = ig.Graph.Famous("Zachary")
G.summary()
start = time.time()
for ii in range(100):
partition = la.find_partition(G, la.ModularityVertexPartition)
end = time.time()
partition.membership
py_time = end - start
print(py_time)'`
echo $bash_py_time > bash_py_time
echo "leiden time:" $bash_py_time "seconds"
#> leiden time: 0.014136075973510742 seconds
bash_py_time <- as.numeric(readLines("bash_py_time"))
We can also run the leiden algorithm in python by calling functions with reticulate:
leidenalg <- import("leidenalg", delay_load = TRUE)
ig <- import("igraph", delay_load = TRUE)
G = ig$Graph$Famous('Zachary')
G$summary()
#> [1] "IGRAPH U--- 34 78 -- "
partition = leidenalg$find_partition(G, leidenalg$ModularityVertexPartition)
partition$membership
#> [1] 0 0 0 0 3 3 3 0 1 0 3 0 0 0 1 1 3 0 1 0 1 0 1 2 2 2 1 2 2 1 1 2 1 1
leidenalg <- import("leidenalg", delay_load = TRUE)
ig <- import("igraph", delay_load = TRUE)
G = ig$Graph$Famous('Zachary')
G$summary()
#> [1] "IGRAPH U--- 34 78 -- "
start <- Sys.time()
for(ii in 1:100){
partition = leidenalg$find_partition(G, leidenalg$ModularityVertexPartition)
}
end <- Sys.time()
partition$membership
#> [1] 0 0 0 0 3 3 3 0 1 0 3 0 0 0 1 1 3 0 1 0 1 0 1 2 2 2 1 2 2 1 1 2 1 1
reticulate_time <- difftime(end, start)[[1]]
print(paste(c("leiden time:", reticulate_time, "seconds"), collapse = " "))
#> [1] "leiden time: 0.0878744125366211 seconds"
The R version can be installed with devtools or from CRAN:
install.packages("leiden")
install.packages("leiden")
Note that these require the Python version as a dependency.
We can reproduce these by running the Leiden algorithm in R using the functions in the leiden package.
We are using the following version of R:
R.version.string
#> [1] "R version 4.2.2 (2022-10-31)"
First we load the packages:
library("igraph")
library("leiden")
Then we load the Zachary karate club example data from igraph.
G <- graph.famous("Zachary")
summary(G)
#> IGRAPH ccb56ed U--- 34 78 -- Zachary
#> + attr: name (g/c)
Here run “legacy” mode to call “leidenalg” in python with the R reticulate package.
partition <- leiden(G, "ModularityVertexPartition", legacy = TRUE)
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 1 1 1 1 4 4 4 1 2 1 4 1 1 1 2 2 4 1 2 1 2 1 2 3 3 3 2 3 3 2 2 3 2 2
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
library("igraph")
library("reticulate")
library("RColorBrewer")
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(G, vertex.color = node.cols, layout=layout_with_kk)
We can reproduce passing arguments in this manner as well.
partition <- leiden(G, "CPMVertexPartition", resolution_parameter = 0.05, legacy = TRUE)
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 2 2 2 2 2 2 2 2 1 2 2 2 2 2 1 1 2 2 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1
table(partition)
#> partition
#> 1 2
#> 17 17
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(G, vertex.color = node.cols, layout=layout_with_kk)
We can run the RBC vertex method which generalises the modularity vertex partition.
partition <- leiden(G, "RBConfigurationVertexPartition", resolution_parameter = 1.5)
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 2 2 5 2 4 4 4 2 1 5 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
table(partition)
#> partition
#> 1 2 3 4 5
#> 11 10 6 5 2
We can plot the result in R to show it in the network.
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(G, vertex.color = node.cols, layout=layout_with_kk)
We can improve performance for undirected graphs for Modularity and CPM cost functions by calling C in igraph.
G <- as.undirected(G, mode = "each")
is.directed(G)
#> [1] FALSE
partition <- leiden(G, "ModularityVertexPartition", legacy = FALSE)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
partition
#> [1] 1 1 1 1 2 2 2 1 3 3 2 1 1 1 3 3 2 1 3 1 3 1 3 4 4 4 3 4 4 3 3 4 3 3
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
library("igraph")
library("reticulate")
library("RColorBrewer")
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(G, vertex.color = node.cols, layout=layout_with_kk)
We check here that it returns the same results as in igraph.
partition <- membership(cluster_leiden(G, objective_function = "modularity"))
partition
#> [1] 1 1 1 1 2 2 2 1 3 3 2 1 1 1 3 3 2 1 3 1 3 1 3 4 4 4 3 4 4 3 3 4 3 3
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
We can also run CPM cost functions.
partition <- leiden(G, "CPMVertexPartition", resolution_parameter = 0.1, legacy = FALSE)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
partition
#> [1] 1 1 1 1 2 2 2 1 3 1 2 4 1 1 3 3 2 1 3 1 3 1 3 3 5 5 3 3 5 3 3 5 3 3
table(partition)
#> partition
#> 1 2 3 4 5
#> 11 5 13 1 4
We can plot the result in R to show it in the network. This reproduces the example in the Python leidenalg documentation.
node.cols <- brewer.pal(max(c(3, partition)),"Pastel1")[partition]
plot(G, vertex.color = node.cols, layout=layout_with_kk)
Now we can time how long the computation of the algorithm takes (for 1000 runs) calling with R on a graph object:
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH 080d9c6 U--- 34 78 -- Zachary
#> + attr: name (g/c)
start <- Sys.time()
for(ii in 1:100){
partition <- leiden(G, "ModularityVertexPartition", legacy = TRUE)
}
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
R_graph_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_graph_time, "seconds"), collapse = " "))
#> [1] "leiden time: 3.5386004447937 seconds"
We can see that the R reticualte implementation does not perform as well as the Python version but it is convenient for R users. Calling from a graph object avoids casting to a dense adjacency matrix which reduces memory load for large graph objects.
We can see that calling leiden in R on an adjacency matrix has faster performance but it does require more memory. For example, on a dense adjacency matrix:
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH 367fc01 U--- 34 78 -- Zachary
#> + attr: name (g/c)
start <- Sys.time()
for(ii in 1:100){
adj_mat <- as_adjacency_matrix(G, sparse = FALSE)
}
end <- Sys.time()
dim(adj_mat)
#> [1] 34 34
R_mat_cast_time = difftime(end, start)[[1]]
paste(print(c("cast time:", R_mat_cast_time, "seconds"), collapse = " "))
#> [1] "cast time:" "0.0133991241455078" "seconds"
#> [1] "cast time:" "0.0133991241455078" "seconds"
start <- Sys.time()
for(ii in 1:100){
partition <- leiden(adj_mat, "ModularityVertexPartition")
}
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
#> Warning in paste("reticulate", module, "load", sep = "::"): NAs introduced by
#> coercion to integer range
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
R_mat_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_mat_time, "seconds"), collapse = " "))
#> [1] "leiden time: 0.350999116897583 seconds"
For example, on a sparse dgCMatrix for the adjacency matrix:
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH 9f9c7f3 U--- 34 78 -- Zachary
#> + attr: name (g/c)
start <- Sys.time()
for(ii in 1:100){
adj_mat <- as_adjacency_matrix(G, sparse = TRUE)
}
end <- Sys.time()
class(adj_mat)
#> [1] "dgCMatrix"
#> attr(,"package")
#> [1] "Matrix"
dim(adj_mat)
#> [1] 34 34
R_sparse_mat_cast_time = difftime(end, start)[[1]]
paste(print(c("cast time:", R_sparse_mat_cast_time, "seconds"), collapse = " "))
#> [1] "cast time:" "0.157054424285889" "seconds"
#> [1] "cast time:" "0.157054424285889" "seconds"
start <- Sys.time()
for(ii in 1:100){
partition <- leiden(adj_mat, "ModularityVertexPartition")
}
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sigs[short], suffix, sep = "#"): NAs introduced by coercion to
#> integer range
#> Warning in paste(rep.int("ANY", nargs), collapse = "#"): NAs introduced by
#> coercion to integer range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in paste(labels[rep.int(1L:n, rep.int(m, n))], new[rep.int(1L:m, : NAs
#> introduced by coercion to integer range
#> Warning in paste(sigs[short], suffix, sep = "#"): NAs introduced by coercion to
#> integer range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(sigs[short], suffix, sep = "#"): NAs introduced by coercion to
#> integer range
#> Warning in paste(rep.int("ANY", nargs), collapse = "#"): NAs introduced by
#> coercion to integer range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3 4
#> 12 5 11 6
R_sparse_mat_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_mat_time, "seconds"), collapse = " "))
#> [1] "leiden time: 0.350999116897583 seconds"
The difference between sparse and dense matrices is more pronounced for large matrices (with few edges):
adjacency_matrix <- rbind(cbind(matrix(round(rbinom(1000000, 1, 0.008)), 1000, 1000),
matrix(round(rbinom(1000000, 1, 0.003)), 1000, 1000),
matrix(round(rbinom(1000000, 1, 0.001)), 1000, 1000)),
cbind(matrix(round(rbinom(1000000, 1, 0.003)), 1000, 1000),
matrix(round(rbinom(1000000, 1, 0.008)), 1000, 1000),
matrix(round(rbinom(0000000, 1, 0.002)), 1000, 1000)),
cbind(matrix(round(rbinom(1000000, 1, 0.003)), 1000, 1000),
matrix(round(rbinom(1000000, 1, 0.001)), 1000, 1000),
matrix(round(rbinom(1000000, 1, 0.009)), 1000, 1000)))
rownames(adjacency_matrix) <- 1:3000
colnames(adjacency_matrix) <- 1:3000
G <- graph_from_adjacency_matrix(adjacency_matrix)
start <- Sys.time()
for(ii in 1:10){
adj_mat <- as_adjacency_matrix(G, sparse = FALSE)
}
end <- Sys.time()
class(adj_mat)
#> [1] "matrix" "array"
dim(adj_mat)
#> [1] 3000 3000
R_mat_large_cast_time = difftime(end, start)[[1]]
paste(print(c("cast time:", R_mat_large_cast_time, "seconds"), collapse = " "))
#> [1] "cast time:" "0.601977109909058" "seconds"
#> [1] "cast time:" "0.601977109909058" "seconds"
start <- Sys.time()
for(ii in 1:10){
partition <- leiden(adj_mat, "ModularityVertexPartition")
}
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3
#> 1037 998 965
R_mat_large_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_mat_large_time, "seconds"), collapse = " "))
#> [1] "leiden time: 15.8183622360229 seconds"
For example, on a sparse adjacency matrix:
start <- Sys.time()
for(ii in 1:100){
adj_mat <- as_adjacency_matrix(G, sparse = TRUE)
}
end <- Sys.time()
class(adj_mat)
#> [1] "dgCMatrix"
#> attr(,"package")
#> [1] "Matrix"
dim(adj_mat)
#> [1] 3000 3000
R_mat_large_cast_time = difftime(end, start)[[1]]
paste(print(c("cast time:", R_mat_large_cast_time, "seconds"), collapse = " "))
#> [1] "cast time:" "0.514630317687988" "seconds"
#> [1] "cast time:" "0.514630317687988" "seconds"
start <- Sys.time()
for(ii in 1:10){
partition <- leiden(adj_mat, "ModularityVertexPartition")
}
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
#> Warning in paste(el[, 1], el[, 2], sep = "|"): NAs introduced by coercion to
#> integer range
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3
#> 1037 999 964
R_mat_large_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_mat_large_time, "seconds"), collapse = " "))
#> [1] "leiden time: 27.4393401145935 seconds"
We compare the processing of adjaceny matrices in the leiden.matrix method to casting to graph in python with reticulate. The current implementation of the R function works as follows. The adjacency matrix is passed to python and the graph object is create in the python-igraph:
partition_type <- "RBConfigurationVertexPartition"
initial_membership <- NULL
weights <- NULL
node_sizes = NULL
resolution_parameter = 1
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH fa6d8bb U--- 34 78 -- Zachary
#> + attr: name (g/c)
time1 <- Sys.time()
object <- as.matrix(as_adjacency_matrix(G))
time2 <- Sys.time()
timing = difftime(time2, time1)[[1]]
print(paste(c("cast to adjacent:", timing, "seconds"), collapse = " "))
#> [1] "cast to adjacent: 0.00492525100708008 seconds"
#run matrix method
leidenalg <- import("leidenalg", delay_load = TRUE)
ig <- import("igraph", delay_load = TRUE)
#convert matrix input (corrects for sparse matrix input)
if(is.matrix(object) || is(adj_mat_sparse, "Matrix")){
adj_mat <- object
} else{
adj_mat <- as.matrix(object)
}
#compute weights if non-binary adjacency matrix given
is_pure_adj <- all(as.logical(adj_mat) == adj_mat)
if (is.null(weights) && !is_pure_adj) {
#assign weights to edges (without dependancy on igraph)
t_mat <- t(adj_mat)
weights <- t_mat[t_mat!=0]
#remove zeroes from rows of matrix and return vector of length edges
}
time3 <- Sys.time()
##convert to python numpy.ndarray, then a list
adj_mat_py <- r_to_py(adj_mat)
adj_mat_py <- adj_mat_py$tolist()
time4 <- Sys.time()
timing = difftime(time4, time3)[[1]]
print(paste(c("pass to python matrix:", timing, "seconds"), collapse = " "))
#> [1] "pass to python matrix: 0.00373578071594238 seconds"
#convert graph structure to a Python compatible object
GraphClass <- if (!is.null(weights) && !is_pure_adj){
ig$Graph$Weighted_Adjacency
} else {
ig$Graph$Adjacency
}
time5 <- Sys.time()
snn_graph <- GraphClass(adj_mat_py)
time6 <- Sys.time()
timing = difftime(time6, time5)[[1]]
reticulate_create_time = difftime(time6, time5)[[1]]
print(paste(c("generate graph in python:", timing, "seconds"), collapse = " "))
#> [1] "generate graph in python: 0.00250601768493652 seconds"
# test performance for computing matrix to graph in R
# other option is to passing snn_graph to Python
time7 <- Sys.time()
#compute partitions
source("../R/find_partition.R")
partition <- find_partition(snn_graph, partition_type = partition_type,
initial_membership = initial_membership ,
weights = weights,
node_sizes = node_sizes,
resolution_parameter = resolution_parameter
)
time8 <- Sys.time()
timing = difftime(time8, time7)[[1]]
print(paste(c("compute partitions:", timing, "seconds"), collapse = " "))
#> [1] "compute partitions: 0.0608298778533936 seconds"
timing = difftime(time8, time1)[[1]]
print(paste(c("total:", timing, "seconds"), collapse = " "))
#> [1] "total: 0.0914096832275391 seconds"
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
Is it more efficent to pass to create a graph object in R and pass this to python?
partition_type <- "RBConfigurationVertexPartition"
initial_membership <- NULL
weights <- NULL
node_sizes = NULL
resolution_parameter = 1
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH 2d837d8 U--- 34 78 -- Zachary
#> + attr: name (g/c)
time1 <- Sys.time()
object <- as.matrix(as_adjacency_matrix(G))
time2 <- Sys.time()
timing = difftime(time2, time1)[[1]]
print(paste(c("cast to adjacent:", timing, "seconds"), collapse = " "))
#> [1] "cast to adjacent: 0.00377511978149414 seconds"
#run matrix method
leidenalg <- import("leidenalg", delay_load = TRUE)
ig <- import("igraph", delay_load = TRUE)
time3 <- Sys.time()
##convert to python numpy.ndarray, then a list
object <- graph_from_adjacency_matrix(adj_mat)
time4 <- Sys.time()
timing = difftime(time4, time3)[[1]]
print(paste(c("generate graph in R:", timing, "seconds"), collapse = " "))
#> [1] "generate graph in R: 0.00243282318115234 seconds"
#convert graph structure to a Python compatible object
time5 <- Sys.time()
##convert to list for python input
if(!is.named(object)){
vertices <- as.list(as.character(V(object)))
} else {
vertices <- as.list(names(V(object)))
}
edges <- as_edgelist(object)
dim(edges)
#> [1] 156 2
edgelist <- list(rep(NA, nrow(edges)))
for(ii in 1:nrow(edges)){
edgelist[[ii]] <- as.character(edges[ii,])
}
snn_graph <- ig$Graph()
snn_graph$add_vertices(r_to_py(vertices))
snn_graph$add_edges(r_to_py(edgelist))
time6 <- Sys.time()
timing = difftime(time6, time5)[[1]]
print(paste(c("pass to python graph:", timing, "seconds"), collapse = " "))
#> [1] "pass to python graph: 0.0263495445251465 seconds"
# test performance for computing matrix to graph in R
# other option is to passing snn_graph to Python
time7 <- Sys.time()
#compute partitions
partition <- find_partition(snn_graph, partition_type = partition_type,
initial_membership = initial_membership ,
weights = weights,
node_sizes = node_sizes,
resolution_parameter = resolution_parameter
)
time8 <- Sys.time()
timing = difftime(time8, time7)[[1]]
print(paste(c("compute partitions:", timing, "seconds"), collapse = " "))
#> [1] "compute partitions: 0.0038902759552002 seconds"
timing = difftime(time8, time1)[[1]]
print(paste(c("total:", timing, "seconds"), collapse = " "))
#> [1] "total: 0.0494425296783447 seconds"
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
Another approach is to generate a graph in R and pass it to the leiden.igraph method.
partition_type <- "RBConfigurationVertexPartition"
initial_membership <- NULL
weights <- NULL
node_sizes = NULL
resolution_parameter = 1
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH e27141b U--- 34 78 -- Zachary
#> + attr: name (g/c)
time1 <- Sys.time()
object <- as.matrix(as_adjacency_matrix(G))
time2 <- Sys.time()
timing = difftime(time2, time1)[[1]]
print(paste(c("cast to adjacent:", timing, "seconds"), collapse = " "))
#> [1] "cast to adjacent: 0.0038001537322998 seconds"
time3 <- Sys.time()
##convert to python numpy.ndarray, then a list
object <- graph_from_adjacency_matrix(adj_mat)
time4 <- Sys.time()
timing = difftime(time4, time3)[[1]]
R_graph_create_time = difftime(time4, time3)[[1]]
print(paste(c("generate graph in R:", timing, "seconds"), collapse = " "))
#> [1] "generate graph in R: 0.00245141983032227 seconds"
#convert graph structure to a Python compatible object
time5 <- Sys.time()
##convert to list for python input
snn_graph <- object
time6 <- Sys.time()
timing = difftime(time6, time5)[[1]]
print(paste(c("pass to R graph:", timing, "seconds"), collapse = " "))
#> [1] "pass to R graph: 0.00225710868835449 seconds"
# test performance for computing matrix to graph in R
# other option is to passing snn_graph to Python
time7 <- Sys.time()
#compute partitions
partition <- leiden(snn_graph, partition_type = partition_type,
initial_membership = initial_membership ,
weights = weights,
node_sizes = node_sizes,
resolution_parameter = resolution_parameter
)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
time8 <- Sys.time()
timing = difftime(time8, time7)[[1]]
print(paste(c("compute partitions:", timing, "seconds"), collapse = " "))
#> [1] "compute partitions: 0.0355880260467529 seconds"
timing = difftime(time8, time1)[[1]]
print(paste(c("total:", timing, "seconds"), collapse = " "))
#> [1] "total: 0.0559277534484863 seconds"
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
Here we can see that the current approach to pass adjacency matrices to Python and generate graphs in Python is more efficient for a dense matrix than computing the graph in R. Therefore the leiden.matrix method will not call the leiden.igraph method and they will remain distinct.
Here we compare calling modularity clustering in igraph (R and C) to calling Python via reticulate. Note this is only available for undirected graphs with modularity or CPM. Calling igraph in R does not have a python dependency.
time9 <- Sys.time()
partition <- membership(cluster_leiden(G, objective_function = "modularity"))
partition
#> [1] 1 1 1 1 2 2 2 1 3 3 2 1 1 1 3 3 2 1 3 1 3 1 3 4 4 4 3 4 4 3 3 4 3 3
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
time10 <- Sys.time()
timing = difftime(time10, time9)[[1]]
print(paste(c("run with igraph:", timing, "seconds"), collapse = " "))
#> [1] "run with igraph: 0.00597953796386719 seconds"
The updated leiden package calls this implementation when available. We can see this is considerably faster and may be faster than call leidenalg in Python.
time11 <- Sys.time()
partition <- leiden(G, "ModularityVertexPartition", legacy = FALSE)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
partition
#> [1] 1 1 1 1 2 2 2 1 3 3 2 1 1 1 3 3 2 1 3 1 3 1 3 4 4 4 3 4 4 3 3 4 3 3
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
time12 <- Sys.time()
timing = difftime(time12, time11)[[1]]
print(paste(c("run with leiden in igraph:", timing, "seconds"), collapse = " "))
#> [1] "run with leiden in igraph: 0.00664305686950684 seconds"
This is considerably faster than the reticulate implementation, especially for larger matrices.
time13 <- Sys.time()
partition <- leiden(G, "ModularityVertexPartition", legacy = TRUE)
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
time14 <- Sys.time()
timing = difftime(time14, time13)[[1]]
print(paste(c("run with leiden with reticulate:", timing, "seconds"), collapse = " "))
#> [1] "run with leiden with reticulate: 0.0230131149291992 seconds"
Matrix methods in R are significantly slower than the updated igraph version.
library("Matrix")
adj_mat <- as(as(as(as_adjacency_matrix(G), Class = "CsparseMatrix"), "generalMatrix"), "dMatrix")
time15 <- Sys.time()
partition <- leiden(adj_mat, "ModularityVertexPartition", legacy = TRUE)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
time16 <- Sys.time()
timing = difftime(time16, time15)[[1]]
print(paste(c("run with leiden with reticulate:", timing, "seconds"), collapse = " "))
#> [1] "run with leiden with reticulate: 0.041384220123291 seconds"
adj_mat <- as_adjacency_matrix(G)
time15 <- Sys.time()
partition <- leiden(adj_mat, "ModularityVertexPartition", legacy = TRUE)
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste(sig, collapse = "#"): NAs introduced by coercion to integer
#> range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in deparse(x[[1L]]): NAs introduced by coercion to integer range
#> Warning in deparse(expr, width.cutoff, ...): NAs introduced by coercion to
#> integer range
#> Warning in paste(deparse(expr, width.cutoff, ...), collapse = collapse): NAs
#> introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
#> Warning in make_py_object.igraph(object, weights = weights): NAs introduced by
#> coercion to integer range
partition
#> [1] 2 2 2 2 4 4 4 2 1 1 4 2 2 2 1 1 4 2 1 2 1 2 1 3 3 3 1 3 3 1 1 3 1 1
table(partition)
#> partition
#> 1 2 3 4
#> 12 11 6 5
time16 <- Sys.time()
timing = difftime(time16, time15)[[1]]
print(paste(c("run with leiden with reticulate:", timing, "seconds"), collapse = " "))
#> [1] "run with leiden with reticulate: 0.0598421096801758 seconds"
For comparison with other methods we compute multiple iterations.
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH 8c299e5 U--- 34 78 -- Zachary
#> + attr: name (g/c)
start <- Sys.time()
for(ii in 1:100){
partition <- membership(cluster_leiden(G, objective_function = "modularity"))
}
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
igraph_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", igraph_time, "seconds"), collapse = " "))
#> [1] "leiden time: 0.0709865093231201 seconds"
G <- graph.famous('Zachary')
summary(G)
#> IGRAPH c64b8fd U--- 34 78 -- Zachary
#> + attr: name (g/c)
start <- Sys.time()
for(ii in 1:100){
partition <- leiden(G, "ModularityVertexPartition", legacy = FALSE)
}
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in deparse(substitute(arg)): NAs introduced by coercion to integer
#> range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
#> Warning in paste0("igraph::", x): NAs introduced by coercion to integer range
end <- Sys.time()
table(partition)
#> partition
#> 1 2 3 4
#> 11 5 12 6
R_cigraph_time = difftime(end, start)[[1]]
print(paste(c("leiden time:", R_cigraph_time, "seconds"), collapse = " "))
#> [1] "leiden time: 0.153227090835571 seconds"
Here we compare the compute time for the Zachary datasets between each method for computing paritions from the leiden clustering algorithm in R or Python.
barplot(c(bash_py_time, py$py_time, reticulate_time, R_graph_time,
R_cigraph_time, igraph_time, R_mat_time, R_sparse_mat_time),
names = c("Python (shell)", "Python (Rmd)", "Reticulate",
"R igraph reticulate", "R igraph (C)", "R igraph cluster_leiden",
"R matrix","R dgCMatrix"),
col = brewer.pal(9,"Pastel1"), las = 2, srt = 45,
ylab = "time (seconds)", main = "benchmarking 100 computations")
abline(h=0)
plot of chunk unnamed-chunk-65
If we account for time to cast matrices from graph objects. Then these are the time taken to compute partitions from a graph in R.
barplot(c(bash_py_time, py$py_time, reticulate_time, R_graph_time,
R_cigraph_time, igraph_time, R_mat_time+R_mat_cast_time,
R_sparse_mat_time+R_sparse_mat_cast_time),
names = c("Python (shell)", "Python (Rmd)", "Reticulate",
"R igraph reticulate", "R igraph (C)", "R igraph cluster_leiden",
"R matrix","R dgCMatrix"),
col = "grey80", las = 2, srt = 45,
ylab = "time (seconds)", main = "benchmarking 100 computations")
barplot(c(bash_py_time, py$py_time, reticulate_time, R_graph_time,
R_cigraph_time, igraph_time, R_mat_time, R_sparse_mat_time),
names = c("Python (shell)", "Python (Rmd)", "Reticulate",
"R igraph reticulate", "R igraph (C)", "R igraph cluster_leiden",
"R matrix","R dgCMatrix"),
col = brewer.pal(9,"Pastel1"), las = 2, srt = 45,
ylab = "time (seconds)", main = "benchmarking 100 computations", add = TRUE)
abline(h=0)
plot of chunk unnamed-chunk-66
Similarly, if we account for time to generate graph from an adjaceny matrix. Then these are the time taken to compute partitions from a matrix in R.
R_graph_create_time = difftime(time4, time3)[[1]]
barplot(c(bash_py_time, py$py_time+reticulate_create_time*100, reticulate_time+reticulate_create_time*100, R_graph_time+R_graph_create_time*100,
R_cigraph_time, igraph_time, R_mat_time, R_sparse_mat_time),
names = c("Python (shell)", "Python (Rmd)", "Reticulate",
"R igraph reticulate", "R igraph (C)", "R igraph cluster_leiden",
"R matrix","R dgCMatrix"),
col = "grey80", las = 2, srt = 45,
ylab = "time (seconds)", main = "benchmarking 100 computations")
barplot(c(bash_py_time, py$py_time, reticulate_time, R_graph_time,
R_cigraph_time, igraph_time, R_mat_time, R_sparse_mat_time),
names = c("Python (shell)", "Python (Rmd)", "Reticulate",
"R igraph reticulate", "R igraph (C)", "R igraph cluster_leiden",
"R matrix","R dgCMatrix"),
col = brewer.pal(9,"Pastel1"), las = 2, srt = 45,
ylab = "time (seconds)", main = "benchmarking 100 computations", add = TRUE)
abline(h=0)
plot of chunk unnamed-chunk-67