| tsibble-tidyverse {tsibble} | R Documentation |
arrange(): if not arranging key and index in past-to-future order, a warning is
likely to be issued.
slice(): if row numbers are not in ascending order, a warning is likely to
be issued.
select(): keeps the variables you mention as well as the index.
transmute(): keeps the variable you operate on, as well as the index and key.
summarise() reduces a sequence of values over time instead of a single summary,
as well as dropping empty keys/groups.
unnest() requires argument key = NULL to get back to a tsibble.
## S3 method for class 'tbl_ts'
arrange(.data, ...)
## S3 method for class 'tbl_ts'
filter(.data, ..., .preserve = FALSE)
## S3 method for class 'tbl_ts'
slice(.data, ..., .preserve = FALSE)
## S3 method for class 'tbl_ts'
select(.data, ...)
## S3 method for class 'tbl_ts'
rename(.data, ...)
## S3 method for class 'tbl_ts'
mutate(.data, ...)
## S3 method for class 'tbl_ts'
transmute(.data, ...)
## S3 method for class 'tbl_ts'
summarise(.data, ...)
## S3 method for class 'tbl_ts'
left_join(x, y, by = NULL, copy = FALSE,
suffix = c(".x", ".y"), ...)
## S3 method for class 'tbl_ts'
right_join(x, y, by = NULL, copy = FALSE,
suffix = c(".x", ".y"), ...)
## S3 method for class 'tbl_ts'
inner_join(x, y, by = NULL, copy = FALSE,
suffix = c(".x", ".y"), ...)
## S3 method for class 'tbl_ts'
full_join(x, y, by = NULL, copy = FALSE,
suffix = c(".x", ".y"), ...)
## S3 method for class 'tbl_ts'
semi_join(x, y, by = NULL, copy = FALSE, ...)
## S3 method for class 'tbl_ts'
anti_join(x, y, by = NULL, copy = FALSE, ...)
## S3 method for class 'tbl_ts'
gather(data, key = "key", value = "value", ...,
na.rm = FALSE, convert = FALSE, factor_key = FALSE)
## S3 method for class 'tbl_ts'
spread(data, key, value, ...)
## S3 method for class 'tbl_ts'
nest(data, ..., .key = "data")
## S3 method for class 'tbl_ts'
unnest(data, ..., key = NULL, .drop = NA,
.id = NULL, .sep = NULL, .preserve = NULL)
.data |
A |
... |
Same arguments accepted as its dplyr generic. |
.preserve |
Optionally, list-columns to preserve in the output. These
will be duplicated in the same way as atomic vectors. This has
dplyr::select semantics so you can preserve multiple variables with
|
x |
tbls to join |
y |
tbls to join |
by |
a character vector of variables to join by. If To join by different variables on x and y use a named vector.
For example, |
copy |
If |
suffix |
If there are non-joined duplicate variables in |
data |
A data frame. |
key |
Unquoted variables to create the key after unnesting. |
value |
Names of new key and value columns, as strings or symbols. This argument is passed by expression and supports
quasiquotation (you can unquote strings
and symbols). The name is captured from the expression with
|
na.rm |
If |
convert |
If |
factor_key |
If |
.key |
The name of the new column, as a string or symbol. This argument is passed by expression and supports
quasiquotation (you can unquote strings
and symbols). The name is captured from the expression with
|
.drop |
Should additional list columns be dropped? By default,
|
.id |
Data frame identifier - if supplied, will create a new column
with name |
.sep |
If non- |
Column-wise verbs, including select(), transmute(), summarise(),
mutate() & transmute(), keep the time context hanging around. That is,
the index variable cannot be dropped for a tsibble. If any key variable
is changed, it will validate whether it's a tsibble internally. Use as_tibble()
to leave off the time context.
library(dplyr, warn.conflicts = FALSE)
# Sum over sensors ----
pedestrian %>%
summarise(Total = sum(Count))
# Back to tibble
pedestrian %>%
as_tibble() %>%
summarise(Total = sum(Count))
library(tidyr)
# example from tidyr
stocks <- tsibble(
time = as.Date('2009-01-01') + 0:9,
X = rnorm(10, 0, 1),
Y = rnorm(10, 0, 2),
Z = rnorm(10, 0, 4)
)
(stocksm <- stocks %>% gather(stock, price, -time))
stocksm %>% spread(stock, price)
nested_stock <- stocksm %>%
nest(-stock)
stocksm %>%
group_by(stock) %>%
nest()
nested_stock %>%
unnest(key = stock)
stock_qtl <- stocksm %>%
group_by(stock) %>%
index_by(day3 = lubridate::floor_date(time, unit = "3 day")) %>%
summarise(
value = list(quantile(price)),
qtl = list(c("0%", "25%", "50%", "75%", "100%"))
)
unnest(stock_qtl, key = qtl)