summary.remstats {remstats} | R Documentation |
Relational Event Network Statistics Summaries
Description
Produce summaries of each statistic from a remstats
object.
Usage
## S3 method for class 'remstats'
summary(object, ...)
Arguments
object |
object of class |
... |
additional arguments affecting the summary produced. |
Value
The summaries provide information for each statistic included in the remstats object, offering insights into the distribution and characteristics of the data.
Examples
rehObject <- remify::remify(edgelist = history, model = "tie")
remstatsObject <- remstats::remstats(reh = rehObject, tie_effects = ~ remstats::inertia())
summary(remstatsObject)
rehObject <- remify::remify(edgelist = history, model = "actor")
remstatsObject <- remstats::remstats(reh = rehObject, receiver_effects = ~ inertia())
summary(remstatsObject)
[Package remstats version 3.2.2 Index]