View source: R/rename_states.R
rename_states | R Documentation |
A simple function for renaming the states of SSModel
object.
Note that since KFAS version 1.2.3 the auxiliary functions such as
SSMtrend
have argument state_names
which can be used to
overwrite the default state names when building the model with SSModel
.
rename_states(model, state_names)
model |
Object of class SSModel |
state_names |
Character vector giving new names for the states. |
Original model with dimnames corresponding to states renamed.
custom_model <- SSModel(1:10 ~ -1 +
SSMcustom(Z = 1, T = 1, R = 1, Q = 1, P1inf = 1), H = 1)
custom_model <- rename_states(custom_model, "level")
ll_model <- SSModel(1:10 ~ SSMtrend(1, Q = 1), H = 1)
test_these <- c("y", "Z", "H", "T", "R", "Q", "a1", "P1", "P1inf")
identical(custom_model[test_these], ll_model[test_these])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.