print.nestimate_data: Print Method for nestimate_data

View source: R/prepare_data.R

print.nestimate_dataR Documentation

Print Method for nestimate_data

Description

Print Method for nestimate_data

Usage

## S3 method for class 'nestimate_data'
print(x, ...)

Arguments

x

A nestimate_data object.

...

Additional arguments (ignored).

Value

The input object, invisibly.

Examples

events <- data.frame(
  actor  = c("u1","u1","u1","u2","u2","u2"),
  action = c("A","B","C","B","A","C"),
  time   = c(1,2,3,1,2,3)
)
nd <- prepare(events, action = "action",
              actor = "actor", time = "time")
print(nd)

Nestimate documentation built on April 20, 2026, 5:06 p.m.