Hi everyone,
currently searching for a handy way to merge tables/files. I'm trying to merge comparable tables (a list of feature with associated categories, two columns each file)
term -> category
(one term) -> category A
(another term) -> category B
[...]
I have about 7 categories and several thousand words, lets make it 20 csv-files for example. In every file every category is present. What I would like to do is merge all 20 files, then group it to remove duplicates and then filter by nominal categories (easy with the nominal value row‑filter-node) and generate one new document for every category.
What I’m doing right now is to use a concatenate node for each and every new document. This works but I guess there are better ways to solve this problem.
What are easier ways of merging tables from several files?
For some files I have to filter some rows before merging so the ideal solution includes the possibility to do some individual “preprocessing” on the tables.