Dataflow#
#include <queryosity.hpp>
using dataflow = qty::dataflow;
namespace multithread = qty::multithread;
namespace dataset = qty::dataset;
namespace column = qty::column;
namespace selection = qty::selection;
namespace query = qty::query;
namespace systematic = qty::systematic;
int main() {
dataflow df;
// your analysis here...
}
The dataflow accepts (up to three) optional keyword arguments options to configure the dataset processing:
Option |
Description |
Default |
|---|---|---|
|
Enable multithreading up to |
|
|
Disable multithreading. |
|
|
Apply a global |
|
|
Process the first |
|
Example
dataflow df(multithread::enable(10), dataset::weight(1.234), dataset::head(100));