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, MemberPosts:24RM 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 toProcess > Synchronize Meta Data with Real Dataand then run your process until a breakpoint before Rename by Replacing
- You can go toSettings > Preferences > Maximum number of nominal values in meta dataand 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 useinvert 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
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.