print.xtbreakcoint: Print Method for xtbreakcoint Objects

View source: R/xtbreakcoint.R

print.xtbreakcointR Documentation

Print Method for xtbreakcoint Objects

Description

Print method for objects of class "xtbreakcoint".

Usage

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

Arguments

x

An object of class "xtbreakcoint".

...

Additional arguments (ignored).

Value

Invisibly returns x.

See Also

xtbreakcoint, summary.xtbreakcoint

Examples

# Generate example panel data
set.seed(42)
N <- 5
T <- 30

panel_data <- data.frame(
  id = rep(1:N, each = T),
  time = rep(1:T, N),
  y = rnorm(N * T),
  x = rnorm(N * T)
)

result <- xtbreakcoint(y ~ x, data = panel_data, id = "id", time = "time",
                       max_factors = 0)
print(result)

xtbreakcoint documentation built on March 16, 2026, 5:09 p.m.