| randomREHsmall | R Documentation |
A subset from the randomly generated sequence of relational events 'randomREH', with 5 actors and 586 events (without event types).
randomREHsmall
data(randomREHsmall) will load a list containing following objects:
edgelista data.frame that contains the random sequence of events. Columns of the edgelist are:
timethe timestamp indicating the time at which each event occurred;
actor1the name of the actor that generated the relational event;
actor2the name of the actor that received the relational event;
actorsnames of actors interacting in the dynamic network.
originstarting time point (t_0) prior to the first observed event (t_1), the class of this object must be the same as the one of the time column in the edgelist.
omit_dyada list where each element describes an alteration of the riskset which takes place at specific time points and for certain actors and/or types.
data(randomREHsmall)
# actors names
randomREHsmall$actors
# types names
randomREHsmall$types
# run the preprocessing function reh() by supplying the loaded objects.
small_edgelist_reh <- remify(edgelist = randomREHsmall$edgelist,
actors = randomREHsmall$actors,
directed = TRUE,
ordinal = FALSE,
origin = randomREHsmall$origin,
omit_dyad = randomREHsmall$omit_dyad,
model = "tie")
# `small_edgelist_reh` is an object of class `reh`
class(small_edgelist_reh)
# names of objects inside `small_edgelist_reh`
names(small_edgelist_reh)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.