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
Special Character - Example Value
When special characters are on rows (example value) are not allowed in RapidMiner attribute. I spent hours to debug this but no luck! Rapid Miner doesn't process any attribute names with 'double quotes' ("). I found that "#", "-", "/", "(", ")" work OK.
Anyways I can solve this issue?
Thanks...
Anyways I can solve this issue?
Thanks...
1
Answers
I had the same problem. If you change those characters with alphabet you can solve it
Regards
mbs
Regards,
Riitu
But there is a very useful document for operators and here is the link of that:
https://docs.rapidminer.com/latest/studio/operators/rapidminer-studio-operator-reference.pdf
you can take a look on that may be you can find an operator for that.
All the best
mbs
You can use Replace operator to handle any special characters. Let's say you want to replace all special characters with a blank space you can configure the replace what with regex of all the special characters [-!"#$%&'()*+,./:;<=>?@\[\\\]_`{|}~] and leave replace by as blank. In the operator, you can filter attributes on the basis of your requirement. There are other ways to handle any exceptions, can you elaborate more on the problem.
Harshit
Bcos of above 5 rows are not imported on Rapidminer. Hence can't use Replace operator. I had to replace on Excel sheet
So your recordset will be like att_1 to att_n on import, which is the first step.
Next you use find and replace on row 1 (having your final row names) and replace \W with nothing. So any non word character (\W) will be removed in essence. This will leave you with all your 'to be titles' but without weird characters. You could also replace bu a space or underscore, up to you in the end.
As a final step you use the 'Rename by Example Values' operator and set record 1, this will rename all of the original attributes with your cleaned data on row 1.
Also there is an answer here in this link
https://community.rapidminer.com/discussion/56933/replace-hyphen#latest
All the best
mbs