get_ss_values {gEcon}R Documentation

Variables' steady-state (equilibrium) values

Description

The get_ss_values function returns (and prints) the steady state/equilibrium of the model.

Usage

get_ss_values(model, variables = NULL, to_tex = FALSE, silent = FALSE)

Arguments

model

an object of gecon_model class.

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.

Value

A numeric vector of the steady-state (equilibrium) values of variables.

Examples

# 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"))

[Package gEcon version 1.1.0 Index]