print.rifreg: Print method for class "rifreg"

View source: R/print.R

print.rifregR Documentation

Print method for class "rifreg"

Description

Print method for class "rifreg"

Usage

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

Arguments

x

an object of class "rifreg", usually, a result of a call to rifreg.

...

other parameters to be passed to printing function.

Value

the function print.rifreg() returns the the covariates' coefficients of the RIF regressions derived from the fitted linear model given in object x.

Examples


rifreg <- rifreg(
  formula = log(wage) ~ union +
    nonwhite +
    married +
    education +
    experience,
  data = men8385,
  statistic = "quantiles",
  probs = seq(0.1, 0.9, 0.1),
  weights = weights
)

print(rifreg)


rifreg documentation built on June 21, 2025, 5:08 p.m.