v0.5.4
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 tonum_partitions=1
.num_partitions="auto"
: Automatically uses all available resources as determined byfuture::availableCores()
.num_partitions
can be set to any positive integer. If it exceeds the number of available resources determined byfuture::availableCores()
, it will default to the maximum available cores.
Full Changelog: v0.5.3...v0.5.4