diff --git a/.Rbuildignore b/.Rbuildignore index f18edac9..4374834e 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,3 +1,4 @@ +^CRAN-RELEASE$ ^.*\.Rproj$ ^\.Rproj\.user$ ^Makefile$ diff --git a/DESCRIPTION b/DESCRIPTION index 959d02b5..d1b370d8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: tsibble Title: Tidy Temporal Data Frames and Tools -Version: 0.5.3.9000 +Version: 0.6.0 Authors@R: c(person(given = "Earo", family = "Wang", diff --git a/NEWS.md b/NEWS.md index ce489b23..061ead15 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# tsibble 0.5.3.9000 (To be released as 0.6.0) +# tsibble 0.6.0 This release simplifies the "key" structure. The nesting and crossing definition has been removed from the "key" specification. One or more variables forming the "key", are required to identify observational units over time, but no longer assume the relationship between these variables. The nesting and crossing structure will be dealt with visualisation and forecasting reconciliation in downstream packages. diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index e3029b9c..9f7232b8 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -78,7 +78,7 @@
diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html index a95439f6..3c44c012 100644 --- a/docs/CONTRIBUTING.html +++ b/docs/CONTRIBUTING.html @@ -78,7 +78,7 @@ diff --git a/docs/ISSUE_TEMPLATE.html b/docs/ISSUE_TEMPLATE.html index 2dbfd072..96a05a1c 100644 --- a/docs/ISSUE_TEMPLATE.html +++ b/docs/ISSUE_TEMPLATE.html @@ -78,7 +78,7 @@ diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 174150e6..93b01dbe 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -78,7 +78,7 @@ diff --git a/docs/SUPPORT.html b/docs/SUPPORT.html index f89cc53a..1d1de5e6 100644 --- a/docs/SUPPORT.html +++ b/docs/SUPPORT.html @@ -78,7 +78,7 @@ diff --git a/docs/articles/faq.html b/docs/articles/faq.html index ae7bd521..5bd3feed 100644 --- a/docs/articles/faq.html +++ b/docs/articles/faq.html @@ -38,7 +38,7 @@ diff --git a/docs/articles/implicit-na.html b/docs/articles/implicit-na.html index 608d5f36..74f0cce8 100644 --- a/docs/articles/implicit-na.html +++ b/docs/articles/implicit-na.html @@ -38,7 +38,7 @@ diff --git a/docs/articles/index.html b/docs/articles/index.html index 4b17c6fe..6f072c0d 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -78,7 +78,7 @@ diff --git a/docs/articles/intro-tsibble.html b/docs/articles/intro-tsibble.html index b67ec603..61397c82 100644 --- a/docs/articles/intro-tsibble.html +++ b/docs/articles/intro-tsibble.html @@ -38,7 +38,7 @@ diff --git a/docs/articles/window.html b/docs/articles/window.html index 91f7eb4f..127c0ef3 100644 --- a/docs/articles/window.html +++ b/docs/articles/window.html @@ -38,7 +38,7 @@ diff --git a/docs/authors.html b/docs/authors.html index 84a5366f..c9269d88 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -78,7 +78,7 @@ diff --git a/docs/index.html b/docs/index.html index 730e5a80..8f72dcee 100644 --- a/docs/index.html +++ b/docs/index.html @@ -43,7 +43,7 @@ diff --git a/docs/news/index.html b/docs/news/index.html index e1e7b444..b252d44b 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -78,7 +78,7 @@ @@ -142,9 +142,9 @@This release simplifies the “key” structure. The nesting and crossing definition has been removed from the “key” specification. One or more variables forming the “key”, are required to identify observational units over time, but no longer assume the relationship between these variables. The nesting and crossing structure will be dealt with visualisation and forecasting reconciliation in downstream packages.
Other implict gaps handling: fill_gaps
,
+
tidyr::fill, tidyr::replace_na for handling missing values NA
.
Other implict gaps handling: count_gaps
,
+
Other implicit gaps handling: count_gaps
,
has_gaps
Other implict gaps handling: count_gaps
,
+
Other implicit gaps handling: count_gaps
,
fill_gaps
is_regular()
is_ordered()
- is_regular
checks if a tsibble is spaced at regular time or not; is_ordered
-checks if a tsibble is ordered by key and index.
Meta-information of a tsibble
is_regular
checks if a tsibble is spaced at regular time or not; is_ordered
-checks if a tsibble is ordered by key and index. — interval • tsibbleis_regular
checks if a tsibble is spaced at regular time or not; is_ordered
-checks if a tsibble is ordered by key and index.regular.Rd
is_regular
checks if a tsibble is spaced at regular time or not; is_ordered
-checks if a tsibble is ordered by key and index.
interval()
returns an interval of a tsibble.
is_regular
checks if a tsibble is spaced at regular time or not.
is_ordered
checks if a tsibble is ordered by key and index.
as_tibble()
to leave off the time context.
-unnest()
requires argument key = id()
to get back to a tsibbl.
unnest()
requires argument key = id()
to get back to a tsibble.
The tsibble package provides a data class of tbl_ts
to represent tidy
-temporaldata. A tsibble consists of a time index, key, and other measured
+temporal data. A tsibble consists of a time index, key, and other measured
variables in a data-centric format, which is built on top of the tibble.