Skip to content

v0.5.4

Compare
Choose a tag to compare
@MMenchero MMenchero released this 28 Aug 23:26
· 52 commits to master since this release
9229fac

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