Learn R Programming

rifreg (version 1.1.0)

print.rifreg: Print method for class "rifreg"

Description

Print method for class "rifreg"

Usage

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

Value

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

Arguments

x

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

...

other parameters to be passed to printing function.

Examples

Run this code

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)

Run the code above in your browser using DataLab