market_quantities | R Documentation |
Estimated market quantities.
demanded_quantities(fit, model, parameters) ## S4 method for signature 'missing,market_model,ANY' demanded_quantities(model, parameters) supplied_quantities(fit, model, parameters) ## S4 method for signature 'missing,market_model,ANY' supplied_quantities(model, parameters) ## S4 method for signature 'market_fit,missing,missing' demanded_quantities(fit) ## S4 method for signature 'market_fit,missing,missing' supplied_quantities(fit)
fit |
A fitted model object. |
model |
A model object. |
parameters |
A vector of model's parameters. |
Calculates and returns the estimated demanded or supplied quantities for each observation at the passed vector of parameters.
A vector with the demanded quantities evaluated at the given parameter vector.
demanded_quantities
: Estimated demanded quantities.
supplied_quantities
: Estimated supplied quantities.
fit <- diseq_basic( HS | RM | ID | TREND ~ RM + TREND + W + CSHS + L1RM + L2RM + MONTH | RM + TREND + W + L1RM + MA6DSF + MA3DHF + MONTH, fair_houses(), correlated_shocks = FALSE ) # get estimated demanded and supplied quantities head(cbind( demanded_quantities(fit), supplied_quantities(fit) ))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.