Gives a concise overview of an r3d object's main properties, including the design type (sharp or fuzzy), local polynomial order, sample size, and bandwidth choice. It also shows a numeric summary (min, median, max) of the estimated distributional RD effect \(\tau(q)\).

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

Arguments

x

An r3d object returned by r3d.

...

Additional arguments (not used).

Value

Returns the x object invisibly.

Details

This function is invoked automatically when an r3d object is printed on the console, e.g., simply by typing its name. For a more detailed summary, use summary.r3d.

Examples

if (FALSE) { # \dontrun{
  fit <- r3d(X, Y_list, boot=TRUE)
  print(fit)
} # }