This function will take in a data set and return to you a tibble of useful information.
Details
This function can accept objects of the following classes:
ts
xts
mts
zoo
tibble/data.frame
The function will return the following pieces of information in a tibble:
name
class
frequency
start
end
var
length
See also
Other Utility:
auto_stationarize(),
calibrate_and_plot(),
internal_ts_backward_event_tbl(),
internal_ts_both_event_tbl(),
internal_ts_forward_event_tbl(),
model_extraction_helper(),
ts_get_date_columns(),
ts_is_date_class(),
ts_lag_correlation(),
ts_model_auto_tune(),
ts_model_compare(),
ts_model_rank_tbl(),
ts_model_spec_tune_template(),
ts_qq_plot(),
ts_scedacity_scatter_plot(),
ts_to_tbl(),
util_difflog_ts(),
util_doublediff_ts(),
util_doubledifflog_ts(),
util_log_ts(),
util_singlediff_ts()
Examples
ts_info_tbl(AirPassengers)
#> # A tibble: 1 × 7
#> name class frequency start end var length
#> <chr> <chr> <dbl> <chr> <chr> <chr> <int>
#> 1 AirPassengers ts 12 1949 1 1960 12 univariate 144
ts_info_tbl(BJsales)
#> # A tibble: 1 × 7
#> name class frequency start end var length
#> <chr> <chr> <dbl> <chr> <chr> <chr> <int>
#> 1 BJsales ts 1 1 1 150 1 univariate 150
