tsdb-package {tsdb} | R Documentation |
Terribly-Simple Database for Time Series
Description
A terribly-simple data base for numeric time series,
written purely in R, so no external database-software is
needed. Series are stored in plain-text files (the
most-portable and enduring file type) in CSV
format; timestamps are encoded using R's native numeric
representation for
Date
/POSIXct
, which makes them
fast to parse, but keeps them accessible with other
software. The package provides tools for saving and
updating series in this standardised format, for
retrieving and joining data, for summarising files and
directories, and for coercing series from and to other
data types (such as 'zoo' series).
Details
See the functions ts_table
and
as.ts_table
for creating a
ts_table
.
See write_ts_table
and
read_ts_tables
for storing and loading a
ts_table
(or several).
For getting started, see the tutorial at https://gitlab.com/enricoschumann/tsdb/blob/master/README.org or https://github.com/enricoschumann/tsdb/blob/master/README.org .
Author(s)
Enrico Schumann
See Also
ts_table
and as.ts_table
for
creating a ts_table
write_ts_table
and read_ts_tables
for
storing and loading a ts_table