Usage
name(object)
describe(object)
market_type(object)
# S4 method for market_model
name(object)
# S4 method for market_model
describe(object)
# S4 method for market_model
market_type(object)
# S4 method for market_fit
name(object)
# S4 method for market_fit
describe(object)
# S4 method for market_fit
market_type(object)
Examples
# initialize the equilibrium using the houses dataset
model <- new(
"diseq_basic", # model type
subject = ID, time = TREND, quantity = HS, price = RM,
demand = RM + TREND + W + CSHS + L1RM + L2RM + MONTH,
supply = RM + TREND + W + L1RM + MA6DSF + MA3DHF + MONTH,
fair_houses()
)
# model name
name(model)
#> [1] "Basic"
# model description
describe(model)
#> [1] "Basic with correlated shocks"
# market type
market_type(model)
#> [1] "Disequilibrium"