Version 1.0-0
Make small additions to documentation.
Version 0.7-4
o CRAN release
o 'read_ts_tables': fixed -- when 'column.names' did
not contain a placeholder such as %file%, it would be
ignored or lead to an error
Version 0.7-2
read_ts_tables fixed -- for a single series, weekends
were never dropped
Version 0.7-1 (CRAN release)
inst/tinytest/test_tsdb.R: remove tests that
rely on local timezone
Version 0.7-0
'read_ts_tables': fixed -- when 'end' was missing,
the function had ignored 'drop.weekends'
'read_ts_tables': the default value for
'drop.weekends' has changed from TRUE to FALSE
'read_ts_tables' gains an argument 'timestamp': if
specified, only data at the times in 'timestamp'
are selected
'ts_table' now allows construction of an empty
ts_table with defined columns:
ts_table(columns = c("A", "B"))
the (very limited and experimental) support for
'MonetDBLite' has been removed (as that package is
unfortunately no longer on CRAN)
a script with some timing tests is available at
https://github.com/enricoschumann/tsdb/blob/master/inst/tests/write_read.R
and
https://gitlab.com/enricoschumann/tsdb/blob/master/inst/tests/write_read.R
If the package is installed, the file may also be
found with
system.file("tests/write_read.R", package = "tsdb")
Version 0.6-3
read_ts_tables: fixed -- column names are no longer
changed when series are read (before, column names were
by mistake changed into `syntactically valid names';
e.g., spaces in names were substituted by dots '.')
Make trivial change in DESCRIPTION
As requested by CRAN team.
Version 0.6-0
o fixed: 'write_ts_table' with option 'add' would
not rewrite (i.e. delete) data before 1 Jan 1970
o write_ts_table: new argument 'replace.file'
o write_ts_table: scientific notation is no longer
suppressed, i.e. numbers may now be written as
e.g. 1e10
o read_ts_tables: new arguments 'read.fn' and
'frequency'
o read_ts_tables: 'return.class' may also be
'ts_table'
o function 'ttime' is now exported
o there are public repositories at
https://github.com/enricoschumann/tsdb and
https://gitlab.com/enricoschumann/tsdb
Version 0.5-0
* R/functions.R (ts_table): store timestamp as
numeric (which reverts the change introduced in
version 0.4-7; see ChangeLog 2017-05-22)