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
Bug in number of attributes processed v9.1 Beta2
It appears that RapidMiner 9.1 Beta 2 will only process 100 attributes. For instance, the replace missing values operator will only show the first 100 attributes. I have noticed that this behavior of working on or showing only the first 100 attributes is common in other data manipulation processes.
Tagged:
0
Best Answer
-
gmeier Employee-RapidMiner, Member Posts: 25 RM EngineeringHi @ad2045!The reason you only see 100 attributes in the metadata (and the selectors) is that the attributes after pivot are determined by the values of your attribute CATEGORY. And in the metadata for the attribute CATEGORY there are only 100 values since this is only a preview.If you really want more than 100 attributes in the metadata, you have two options:
- You can go to Process > Synchronize Meta Data with Real Data and then run your process until a breakpoint before Rename by Replacing
- You can go to Settings > Preferences > Maximum number of nominal values in meta data and increase the number there. But setting this number too high might lead to memory problems.
In general, it is not advisable to select hundreds of attributes by hand, so Jan's regex solution is preferable. Or if you want to select all but a small number of attributes, you can also select the small number and use invert selection. Furthermore, you can use attribute names in the selector even if they are not shown on the right side by just typing the names.
2
Answers
<?xml version="1.0" encoding="UTF-8"?><process version="9.1.000-BETA2">
You can also use a regex to select all relevant attributes if they already are named similar. If they look like "CATEGORY_NAME1"...."CATEGORY_NAME2", you could use "CATEGORY_.*" as a regex to select them. I'm sorry, but I don't have your data, so I cannot tell the exact names.