Description Usage Arguments Author(s) See Also Examples
View source: R/CMISDynamicRegForecastExtraFunctions.R
Recebe objeto cmisdyn e plota sumario das estat<c3><ad>sticas do ajuste inclu<c3><ad>ndo gr<c3><a1>fico.
1 | summary.cmisdyn(obj, plot=TRUE, digits = 10)
|
obj |
Objeto da classe cmisdyn |
plot |
Se TRUE exibe o gr<c3><a1>fico do ajuste |
digits |
Total de digititos da saida |
LOPES, J. E.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(diario)
da <- dataframe.outlier(diario, n_passos_frente=10, freq=7)$dados_ts
nm <- dimnames(da)[[2]]
vresposta <- explicativas <- c()
for(i in 1:length(nm)){
if (substr(nm[i], 1, 3) == "NEG") explicativas[i] <- nm[i]
if (substr(nm[i], 1, 3) == "HDW") vresposta[i] <- nm[i]
}
vresposta <- as.character(na.omit(vresposta))
explicativas <- as.character(na.omit(explicativas))
fit <- cmis_dynamic_reg_forecast(da, vresposta[1], explicativas, 20, 7,
nfolds = 10, p_aumento = 1, nivel = 95, trace = TRUE)
summary(fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.