Skip to content

Commit 9f496df

Browse files
authored
Merge pull request #70 from SebKrantz/development
Development
2 parents dbcc764 + a774cf7 commit 9f496df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

R/DFM.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ DFM <- function(X, r, p = 1L, ...,
404404

405405
## Initial System Matrices
406406
if(MFl) {
407-
init <- if(idio.ar1) stop("Not yet implemented") else
407+
init <- if(idio.ar1) stop("Mixed frequency with autocorrelated errors is not yet implemented") else
408408
init_cond_MQ(X, X_imp, F_pc, v, n, r, p, TT, nq, rRi, rQi)
409409
} else {
410410
init <- if(idio.ar1) init_cond_idio_ar1(X, F_pc, v, n, r, p, BMl, rRi, rQi, anymiss, tol) else

vignettes/introduction.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ print(dfm_summary) # Large model with > 40 series: defaults to compact = 2
107107
Apart from the model summary, the *dfm* methods `residuals()` and `fitted()` return observation residuals and fitted values from the model. The default format is a plain matrix, but the functions also have an argument to return data in the original (input) format.
108108

109109
```{r}
110-
plot(resid(model_m, orig.format = TRUE))
111-
plot(fitted(model_m, orig.format = TRUE))
110+
plot(resid(model_m, orig.format = TRUE), lwd = 1)
111+
plot(fitted(model_m, orig.format = TRUE), lwd = 1)
112112
```
113113

114114

0 commit comments

Comments
 (0)