Skip to content

Commit

Permalink
add new jar
Browse files Browse the repository at this point in the history
  • Loading branch information
TanguyBarthelemy committed Jul 12, 2024
1 parent 6383009 commit 6c42fca
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Changed

* `cross_validation()` function renamed to `cve()`, `cross_validation()` is now deprecated.
* New .jar files added (related to [v2.2.0](https://github.com/jdemetra/jdplus-incubator/releases/tag/v2.2.0))

### Added

Expand Down
2 changes: 1 addition & 1 deletion R/implicit_forecast.R
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ implicit_forecast.default <- function(x, coefs){
}
#' @export
implicit_forecast.matrix <- function(x, coefs){
result <- do.call(cbind, lapply(seq_len(ncol(x)), function (i) implicit_forecast(x[,i], coefs = coefs)))
result <- do.call(cbind, lapply(seq_len(ncol(x)), function(i) implicit_forecast(x[,i], coefs = coefs)))
colnames(result) <- colnames(x)
result
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<description>Usage: mvn -Pcopy-jars</description>

<properties>
<jdplus-incubator.version>2.1.0</jdplus-incubator.version>
<jdplus-incubator.version>2.2.0</jdplus-incubator.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 6c42fca

Please sign in to comment.