print.tna_data {tna}R Documentation

Print a TNA Data Object

Description

Print a TNA Data Object

Usage

## S3 method for class 'tna_data'
print(x, data = "sequence", ...)

Arguments

x

A tna_data object.

data

A character string that defines the data to be printed tibble. Accepts either "sequence" (default) for wide format sequence data, "meta", for the wide format metadata, or "long" for the long format data.

...

Arguments passed to the tibble print method.

Value

x (invisibly).

See Also

Other data: import_data(), prepare_data(), simulate.tna()

Examples

res <- prepare_data(group_regulation_long, action = "Action", actor = "Actor",
time = "Time")
print(res, which = "sequence")
print(res, which = "meta")
print(res, which = "long")


[Package tna version 1.0.0 Index]