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
Throughout other functions that utilize graphs, it's common to be calling length(graph$hypotheses) or dimnames(graph$transitions), etc. So here are a few generics that might be useful to define differently for a graph
length.initial_graph as length(graph$hypotheses)
names.initial_graph as names(graph$hypotheses)
dimnames.initial_graph as dimnames(graph$transitions)
str.initial_graph with prettier printing of some sort? Need to be careful with this one, since it's so useful for exploring underlying structure outside of printing
seq.initial_graph as seq_along(graph$hypotheses)
...Others?
The text was updated successfully, but these errors were encountered:
Throughout other functions that utilize graphs, it's common to be calling
length(graph$hypotheses)
ordimnames(graph$transitions)
, etc. So here are a few generics that might be useful to define differently for a graphlength.initial_graph
aslength(graph$hypotheses)
names.initial_graph
asnames(graph$hypotheses)
dimnames.initial_graph
asdimnames(graph$transitions)
str.initial_graph
with prettier printing of some sort? Need to be careful with this one, since it's so useful for exploring underlying structure outside of printingseq.initial_graph
asseq_along(graph$hypotheses)
The text was updated successfully, but these errors were encountered: