You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code
make_()
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to make_, nothing given
Code
make_(1:10)
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to make_, nothing given
Code
graph_()
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to graph_, nothing given
Code
graph_(1:10)
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to graph_, nothing given
Code
graph_(directed_graph(), directed_graph())
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to graph_, multiple constructors given
Code
sample_()
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to sample_, nothing given
Code
sample_(1:10)
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to sample_, nothing given
Code
sample_(directed_graph(), directed_graph())
Condition
Error in `.extract_constructor_and_modifiers()`:
! Don't know how to sample_, multiple constructors given
graph_from_literal() and simple undirected graphs
Code
graph_from_literal(A - B)
Output
IGRAPH UN-- 2 1 --
+ attr: name (v/c)
+ edge (vertex names):
[1] A--B
Code
graph_from_literal(A - B - C)
Output
IGRAPH UN-- 3 2 --
+ attr: name (v/c)
+ edges (vertex names):
[1] A--B B--C
Code
graph_from_literal(A - B - C - A)
Output
IGRAPH UN-- 3 3 --
+ attr: name (v/c)
+ edges (vertex names):
[1] A--B A--C B--C
make_empty_graph gives an error for invalid arguments
Code
make_empty_graph(NULL)
Condition
Error in `make_empty_graph()`:
! At rinterface_extra.c:79 : Expecting a scalar integer but received a vector of length 0. Invalid value