over_membership() runs a function, e.g. a measure,
over different group memberships
over_waves() runs a function, e.g. a measure,
over waves of a panel network
over_time() runs a function, e.g. a measure,
over time slices of a dynamic network
over_membership(
.data,
FUN,
...,
membership,
strategy = "sequential",
verbose = FALSE
)
over_waves(
.data,
FUN,
...,
attribute = "wave",
strategy = "sequential",
verbose = FALSE
)
over_time(
.data,
FUN,
...,
attribute = "time",
slice = NULL,
strategy = "sequential",
verbose = FALSE
)A manynet-consistent network.
See e.g. manynet::as_tidygraph() for more details.
A function to run over all splits.
Further arguments to be passed on to FUN.
A categorical membership vector.
If {furrr} is installed,
then multiple cores can be used to accelerate the function.
By default "sequential",
but if multiple cores available,
then "multisession" or "multicore" may be useful.
Generally this is useful only when times > 1000.
See {furrr} for more.
Whether the function should report on its progress.
By default FALSE.
See {progressr} for more.
A string naming the attribute to be split upon.
Optionally, a vector of specific slices. Otherwise all observed slices will be returned.