Hello,
It's my first post.
I have a workflow to extract topics from some abstracts. After doing pre-processing and extracting topics, I want to group my documents by assigned topics (There are more than one topic for some articles, but I don't know if it's correct or not to have more than one topic for documents!). Now I use Group By node and I struggled with all possible setting but the results is always like below:
RowID Document Topic
1 doc1 3
2 doc1 3
3 doc1 8
....
How can I assign all topics to doc1 to have:
doc1 [3,8]
thanks