[Deprecated] Generally these functions have been superseded or renamed. Upon using them, a message is provided directing the user to the new function. However, at this stage of package development, we generally clear older defunct functions at each minor release, and so you are strongly encouraged to use the new functions/names/syntax wherever possible and update your scripts accordingly.

node_by_coreness(.data, coreness = NULL, direction = c("all", "out", "in"))

net_x_mixed(.data, object2)

node_in_weak(.data)

node_in_strong(.data)

Arguments

.data

A network object of class stocnet, igraph, tbl_graph, network, or similar. Internally any of these will be coerced to an efficient implementation. For more information on possible coercions, see e.g. manynet::as_stocnet().

coreness

Which method to use to calculate nodes' coreness. One of "correlation", "rich", "transition", or "hub"; see method_coreness for what each does. By default NULL, which uses "rich" for a weighted, directed, or two-mode network, since it is the only method that reads those properties directly, and "correlation" otherwise.

direction

One of "all" (the default), "out", or "in". For a directed network, "out" scores nodes on the ties they send and "in" on the ties they receive. Ignored for undirected and two-mode networks.

object2

A second, two-mode network object.

Value

Results as expected along with a warning to use new function naming in the future.

Functions

  • node_by_coreness(): Deprecated on 2026-08-27. Renamed node_by_core(), for symmetry with node_is_core() and node_in_core(), and so that "coreness" names only the peeling depth that node_by_kcoreness() returns.

  • net_x_mixed(): Deprecated on 2026-08-28. Folded into net_x_triad(), which now takes the multilevel census whenever it is given both a one-mode and a two-mode network, rather than reporting that no such option exists.

  • node_in_weak(): Deprecated on 2026-08-28. Folded into node_in_component(connectivity = "weak"), which now takes the connectivity wanted as an argument rather than splitting the same calculation across three function names.

  • node_in_strong(): Deprecated on 2026-08-28. Folded into node_in_component(connectivity = "strong"), which is also what node_in_component() does by default.