Learn R Programming

markets (version 1.1.5)

show,market_model-method: Prints a short description of the model

Description

Sends basic information about the model to standard output.

Usage

# S4 method for market_model
show(object)

# S4 method for market_fit show(object)

Value

No return value, called for side effects (print basic model information).

Arguments

object

A model object.

Examples

Run this code
# \donttest{
fit <- equilibrium_model(
  HS | RM | ID | TREND ~
    RM + TREND + W + CSHS + L1RM + L2RM + MONTH |
      RM + TREND + W + L1RM + MA6DSF + MA3DHF + MONTH,
  fair_houses(),
  estimation_options = list(method = "2SLS")
)

# print model information
show(fit@model)

# print fit information
show(fit)
# }

Run the code above in your browser using DataLab