Skip to content

Commit c2a531b

Browse files
v1.0.5.3
1 parent 5e7bc0a commit c2a531b

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: disaggR
22
Type: Package
33
Title: Two-Steps Benchmarks for Time Series Disaggregation
4-
Version: 1.0.5.2
4+
Version: 1.0.5.3
55
Authors@R:
66
c(person(given = "Arnaud",
77
family = "Feldmann",
@@ -42,7 +42,7 @@ Imports:
4242
License: MIT + file LICENSE
4343
Encoding: UTF-8
4444
Roxygen: list(markdown = TRUE)
45-
RoxygenNote: 7.2.3
45+
RoxygenNote: 7.3.1
4646
Suggests:
4747
knitr,
4848
ggplot2 (>= 3.0.0),

NAMESPACE

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@ S3method(fitted,twoStepsBenchmark)
2222
S3method(ggplot2::autoplot,threeRuleSmooth)
2323
S3method(ggplot2::autoplot,tscomparison)
2424
S3method(ggplot2::autoplot,twoStepsBenchmark)
25+
S3method(ggplotts,data.frame)
26+
S3method(ggplotts,ts)
2527
S3method(in_disaggr,threeRuleSmooth)
2628
S3method(in_disaggr,twoStepsBenchmark)
29+
S3method(in_disaggr_ctb,threeRuleSmooth)
30+
S3method(in_disaggr_ctb,twoStepsBenchmark)
2731
S3method(in_revisions,threeRuleSmooth)
2832
S3method(in_revisions,twoStepsBenchmark)
2933
S3method(in_sample,praislm)
@@ -39,6 +43,9 @@ S3method(monthplot,threeRuleSmooth)
3943
S3method(monthplot,twoStepsBenchmark)
4044
S3method(na.omit,threeRuleSmooth)
4145
S3method(na.omit,twoStepsBenchmark)
46+
S3method(neither_outlier_nor_constant,praislm)
47+
S3method(neither_outlier_nor_constant,threeRuleSmooth)
48+
S3method(neither_outlier_nor_constant,twoStepsBenchmark)
4249
S3method(outliers,praislm)
4350
S3method(outliers,twoStepsBenchmark)
4451
S3method(plot,threeRuleSmooth)
@@ -74,7 +81,6 @@ S3method(vcov,praislm)
7481
S3method(vcov,twoStepsBenchmark)
7582
S3method(window,threeRuleSmooth)
7683
S3method(window,twoStepsBenchmark)
77-
export()
7884
export(annualBenchmark)
7985
export(bflSmooth)
8086
export(default_col_pal)

R/in.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ in_disaggr_notctb <- function(object,type) {
148148

149149
in_disaggr_ctb <- function(object) UseMethod("in_disaggr_ctb")
150150

151+
#' @export
151152
in_disaggr_ctb.threeRuleSmooth <- function(object) {
152153
benchmark <- na.omit(as.ts(object))
153154

@@ -164,6 +165,7 @@ in_disaggr_ctb.threeRuleSmooth <- function(object) {
164165
))
165166
}
166167

168+
#' @export
167169
in_disaggr_ctb.twoStepsBenchmark <- function(object) {
168170

169171
hfserie <- model.list(object)$hfserie

R/plot.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,7 @@ dftsforggplot <- function(object,series_names) {
555555

556556
ggplotts <- function(object,...) UseMethod("ggplotts")
557557

558+
#' @export
558559
ggplotts.data.frame <- function(object,show.legend, theme,type,
559560
xlab,ylab, group,lims,verysmall,
560561
...) {
@@ -583,6 +584,7 @@ ggplotts.data.frame <- function(object,show.legend, theme,type,
583584
theme
584585
}
585586

587+
#' @export
586588
ggplotts.ts <- function(object,show.legend, series_names,theme,type,
587589
start, end, xlab,ylab, ...) {
588590

R/utils.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,17 @@ neither_outlier_nor_constant_impl <- function(hfserie, object) {
6161

6262
neither_outlier_nor_constant <- function(object) UseMethod("neither_outlier_nor_constant")
6363

64+
#' @export
6465
neither_outlier_nor_constant.twoStepsBenchmark <- function(object) {
6566
neither_outlier_nor_constant_impl(model.list(object)$hfserie, object)
6667
}
6768

69+
#' @export
6870
neither_outlier_nor_constant.threeRuleSmooth <- function(object) {
6971
model.list(object)$hfserie
7072
}
7173

74+
#' @export
7275
neither_outlier_nor_constant.praislm <- function(object) {
7376
neither_outlier_nor_constant_impl(model.list(object)$X, object)
7477
}

man/disaggR-package.Rd

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot.tscomparison.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)