Skip to content

Commit

Permalink
Merge pull request #22 from clemasso/develop
Browse files Browse the repository at this point in the history
add data
  • Loading branch information
clemasso authored Jul 18, 2024
2 parents c9eba21 + dd15866 commit 453a83a
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 3 deletions.
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ URL: https://github.com/rjdverse/rjd3nowcasting,
BugReports: https://github.com/rjdverse/rjd3nowcasting/issues
Encoding: UTF-8
Collate:
'data.R'
'estimation.R'
'news.R'
'results.R'
Expand All @@ -39,3 +40,4 @@ Suggests:
knitr,
rmarkdown
VignetteBuilder: knitr
LazyData: true
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]

## [2.0.3] - 2024-07-12
### Added

* Add real data for illustration

## [2.0.3] - 2024-07-12

## [2.0.0] - 2024-06-04

Expand Down
15 changes: 15 additions & 0 deletions R/data.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#' Datasets including some French macro-economic variables
#'
#' The datasets 'data0' and 'data1' acts as successive releases of
#' macro-economic time series. They contain data on monthly industrial
#' production index (PVI), turnover (TURN), quarterly GDP, as well as
#' business survey data (BS) and other survey data (PMI) for both France
#' and the Eurozone. Those datasets are used to illustrate how one of these
#' variable can be nowcasted using the others using a Dynamic Factor model.
#'
#' @name macroIndicators
#' @keywords datasets
"data0"

#' @rdname macroIndicators
"data1"
Binary file added data/data0.rda
Binary file not shown.
Binary file added data/data1.rda
Binary file not shown.
27 changes: 27 additions & 0 deletions man/macroIndicators.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion vignettes/rjd3nowcasting.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Detailed information concerning each step follows below the example.
# Quick start example
## 1. Data
set.seed(100)
data0 <- stats::ts(
data = matrix(rnorm(500), 100, 5),
Expand Down

0 comments on commit 453a83a

Please sign in to comment.