show,market_model-method {markets}R Documentation

Prints a short description of the model

Description

Sends basic information about the model to standard output.

Usage

## S4 method for signature 'market_model'
show(object)

## S4 method for signature 'market_fit'
show(object)

Arguments

object

A model object.

Value

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

Examples


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)


[Package markets version 1.1.5 Index]