get_ss_values {gEcon} | R Documentation |
The get_ss_values
function returns (and prints) the steady state/equilibrium of the model.
get_ss_values(model, variables = NULL, to_tex = FALSE, silent = FALSE)
model |
an object of |
variables |
the names or the indices of the variables whose steady-state (equilibrium) values are to be returned. All variables are listed by default. |
to_tex |
logical. If TRUE, the output is written to a .tex file. The default value is FALSE. |
silent |
logical. If TRUE, console output is suppressed. The default value is FALSE. |
A numeric vector of the steady-state (equilibrium) values of variables.
# copy the example to the current working directory file.copy(from = file.path(system.file("examples", package = "gEcon"), "rbc.gcn"), to = getwd()) # make and load the model rbc <- make_model("rbc.gcn") # find and print the steady-state values rbc <- steady_state(rbc) get_ss_values(rbc) get_ss_values(rbc, variables = c("K_s", "L_s"))