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