Concatenator#
Concatenates multiple iterators by joining the tail of one with the head of another.
Interfaces: Extractor
Parameters#
# | Name | Default | Type | Description |
---|---|---|---|---|
1 | iterators | array | The iterators to concatenate together. |
Example#
use Rubix\ML\Extractors\Concatenator;
use Rubix\ML\Extractors\CSV;
$extractor = new Concatenator([
new CSV('dataset1.csv'),
new CSV('dataset2.csv'),
new CSV('dataset3.csv'),
]);
Additional Methods#
This extractor does not have any additional methods.
Last update:
2021-07-03