| summary.xtbreakcoint | R Documentation |
Summary method for objects of class "xtbreakcoint", providing detailed
output including individual unit results.
## S3 method for class 'xtbreakcoint'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (ignored). |
Invisibly returns object.
xtbreakcoint, print.xtbreakcoint
# 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)
summary(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.