HOWTO ExcelExampleSetWriter in Classification Output
Hi,
I am trying the text classification example and I want to output the results, prediction and confidence columns, to excel. Is this possible? I tried the code below but it output the attributes only.
thanks,
Matthew
I am trying the text classification example and I want to output the results, prediction and confidence columns, to excel. Is this possible? I tried the code below but it output the attributes only.
thanks,
Matthew
Tagged:
0
Answers
I think the problem here are the limitations of the excel format .xls. It supports only a very small number of columns, as you know from A to ZZ. But especial text mining produces a great bunch of attributes, more than 10.000 are usuall.
If you are interested solely in the prediction and confidence columns, you might filter the attributes before writing them to excel.
You only need to insert the AttributeFilter operator before the excel writer. This is done in the following process: Greeting,
Sebastian
thanks.