The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
How to fade out data in the result?
Hello,
Does anybody know if RapidMiner is able to fade out some of the data in the result? I only need some special words from the outcoming wordlist in the result.
Is there any operator which I can give these special words with? So that there are only these words in the result?
Greetings, Ina
Does anybody know if RapidMiner is able to fade out some of the data in the result? I only need some special words from the outcoming wordlist in the result.
Is there any operator which I can give these special words with? So that there are only these words in the result?
Greetings, Ina
0
Answers
if I understood you correctly, you are going to filter the resulting wordlist? If it's only for viewing purposes, you could use a process like this: It first imports the texts and writes the WordList as file. This wordlist is then read in as ExampleSet. You now have all the abilities to filter the wordlist as for normal exampleSets. For example you could use the ExampleFilter in the way described above. It will keep only examples, with the specified attribute matching the given regular expression.
Greetings,
Sebastian
thanks for your answer!
But I think your description doesn't solve my problem...
Today I found the operator FeatureNameFilter. Is it possible to skip all features with "skip_features_with_name" (Which expression is needed here?) and to except special features with "except_features_with_name" (Which seperator do I need to write several features in the input field?)?
Or is there another operator where I can select features (words) which I only want to get back in the result?
As yet I only foundf operators to skip features/words from the result. But I need an operator where I can say which features/words I want to get back in the result.
Greetings,
Ina
ok, now I understand what you are going to do. The operator "AttributeFilter": It allows to select, which attributes should be kept. Therefore you switch the condition_class to "attribute_name_filter" and then enumerate each attribute name in the parameter_string field, separated by a pipe: |
If you want to catch several equal attributes, you might use regular expressions to specify them. Please do a quick google search for understanding regular expressions. Or search this forum, if I recall correctly someone has posted a link on a good tutorial a few weeks ago. Greetings,
Sebastian
yes that's it... Now it's working like it's supposed to. Thanks for you help!
Greetings, Ina