"Text Mining"
Nancy
New Altair Community Member
Hi,
I am working with Text Mining. After the operations are done I am getting the result in a single row.How can I view the result line by line as same as that of the input Text.
Thanks in Advance,
Nancy
I am working with Text Mining. After the operations are done I am getting the result in a single row.How can I view the result line by line as same as that of the input Text.
Thanks in Advance,
Nancy
Tagged:
0
Answers
-
Hi,
one term vector is created for each document you are feeding into the Text Input operator. This vector does not contain any informations about the single words and its position in the original text, so showing it in one row is simply the only option. If you want to build term vectors from single lines of your documents and hence want to analyze these single lines without the context of the hole document, you have to split the documents beforehand, so that each line becomes one single document. The operators Segmenter and SplitSegmenter will help you with this.
Greetings,
Sebastian0