| print.rifreg {rifreg} | R 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)
[Package rifreg version 0.1.0 Index]