Skip to content

Releases: Nixtla/nixtlar

v0.6.2

28 Oct 21:59
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.1...v0.6.2

v0.6.1

10 Oct 21:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.6.1

v0.6.0

08 Oct 02:24
bd3b0cf
Compare
Choose a tag to compare

v0.6.0

Breaking changes

  • The time_col parameter now only accepts values in the formats YYYY-MM-DD and YYYY-MM-DD hh:mm:ss, either as character strings or date objects (Date class or POSIXct class).
  • The id_col parameter now defaults to unique_id for all core functions.
  • Minimum data requirements have been implemented, following the new TimeGPT API-v2 specifications.
  • Changes to the allowed frequency aliases have been made. For more details, see the "Special Topics" vignette.

Features

  • Extended support to tibbles for input data.
  • Exogenous variables no longer require future values. Users can now provide only the historical values of exogenous variables.

Bug fixes

  • Fixed an issue where timestamps such as "2024-01-01 00:00:00" were sometimes converted to "2024-01-01".

Documentation

  • Vignettes have been updated to reflect the new features and changes.

Full Changelog: v0.5.4...v0.6.0

v0.5.4

28 Aug 23:26
9229fac
Compare
Choose a tag to compare

What's Changed

Version 0.5.4 of nixtlar is now available. This development release introduces parallel processing, which are not yet available on CRAN and can be used to handle large datasets. To use this feature, configure the num_partitions parameter in any of the nixtlar methods as follows:

  • num_partitions=NULL: This is the default setting, operating in sequential mode, equivalent to num_partitions=1.
  • num_partitions="auto": Automatically uses all available resources as determined by future::availableCores().
  • num_partitions can be set to any positive integer. If it exceeds the number of available resources determined by future::availableCores(), it will default to the maximum available cores.

Full Changelog: v0.5.3...v0.5.4

v0.5.3

03 Jun 19:07
Compare
Choose a tag to compare

Release v0.5.3 - Development Version

Welcome to version 0.5.3 of the nixtlar package. This development release introduces several features that are not yet available on CRAN. Here’s what’s new:

  • Quantile Forecasts: This update includes the ability to perform quantile forecasts. To learn how to use this new feature, check out our Quantile Forecasts Vignette.

  • Comprehensive Documentation: We've expanded our documentation to make it easier for you to use nixtlar effectively. Explore the new and updated vignettes here.

  • Improved API Stability: nixtlar now includes automatic retries for requests that fail due to intermittent API errors.

  • Updated API URLs: This version uses the new URLs for the TimeGPT API. Please note that while the URLs in the CRAN version are still operational, they will be deprecated in the future. We will make an announcement before this change takes place.

New Contributors