Skip to content

Commit 09abfdb

Browse files
committed
resubmit to cran
1 parent c837e83 commit 09abfdb

File tree

3 files changed

+23
-27
lines changed

3 files changed

+23
-27
lines changed

CRAN-RELEASE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
This package was submitted to CRAN on 2020-06-01.
2-
Once it is accepted, delete this file and tag the release (commit c8ed20af16).
1+
This package was submitted to CRAN on 2020-06-03.
2+
Once it is accepted, delete this file and tag the release (commit c837e83961).

NAMESPACE

-4
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,6 @@ S3method(vec_cast,tbl_ts.tbl_ts)
164164
S3method(vec_cast,yearmonth.yearmonth)
165165
S3method(vec_cast,yearquarter.yearquarter)
166166
S3method(vec_cast,yearweek.yearweek)
167-
S3method(vec_proxy,grouped_ts)
168-
S3method(vec_proxy,tbl_ts)
169167
S3method(vec_ptype2,Date.yearmonth)
170168
S3method(vec_ptype2,Date.yearquarter)
171169
S3method(vec_ptype2,Date.yearweek)
@@ -189,8 +187,6 @@ S3method(vec_ptype2,yearweek.yearweek)
189187
S3method(vec_ptype_abbr,yearmonth)
190188
S3method(vec_ptype_abbr,yearquarter)
191189
S3method(vec_ptype_abbr,yearweek)
192-
S3method(vec_restore,grouped_ts)
193-
S3method(vec_restore,tbl_ts)
194190
S3method(year,yearweek)
195191
S3method(yearmonth,"NULL")
196192
S3method(yearmonth,Date)

R/vctrs-tsibble.R

+21-21
Original file line numberDiff line numberDiff line change
@@ -90,24 +90,24 @@ vec_cast.data.frame.tbl_ts <- function(x, to, ...) {
9090
df_cast(x, to, ...)
9191
}
9292

93-
#' @export
94-
vec_restore.tbl_ts <- function(x, to, ..., n = NULL) {
95-
# assuming `i` in order and no duplicates, minimal check for performance reason
96-
build_tsibble(x,
97-
key = key_vars(to), index = index_var(to), index2 = index2_var(to),
98-
ordered = TRUE, validate = FALSE, .drop = key_drop_default(to))
99-
}
100-
101-
#' @export
102-
vec_proxy.tbl_ts <- function(x, ...) {
103-
new_data_frame(x)
104-
}
105-
106-
#' @export
107-
vec_restore.grouped_ts <- function(x, to, ..., n = NULL) {
108-
x <- NextMethod()
109-
vec_restore.tbl_ts(x, to)
110-
}
111-
112-
#' @export
113-
vec_proxy.grouped_ts <- vec_proxy.tbl_ts
93+
# #' @export
94+
# vec_restore.tbl_ts <- function(x, to, ..., n = NULL) {
95+
# # assuming `i` in order and no duplicates, minimal check for performance reason
96+
# build_tsibble(x,
97+
# key = key_vars(to), index = index_var(to), index2 = index2_var(to),
98+
# ordered = TRUE, validate = FALSE, .drop = key_drop_default(to))
99+
# }
100+
#
101+
# #' @export
102+
# vec_proxy.tbl_ts <- function(x, ...) {
103+
# new_data_frame(x)
104+
# }
105+
#
106+
# #' @export
107+
# vec_restore.grouped_ts <- function(x, to, ..., n = NULL) {
108+
# x <- NextMethod()
109+
# vec_restore.tbl_ts(x, to)
110+
# }
111+
#
112+
# #' @export
113+
# vec_proxy.grouped_ts <- vec_proxy.tbl_ts

0 commit comments

Comments
 (0)