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
Super Newbie Question about Search
My apologies, I'm sure this is very simple but my retarded brain is struggling.
I'm looking at a colleagues rapid miner file, which is quite large. I'm trying to find certain operators (I think that's the correct term)... such as Filters that he has called things like "Filter All XXX" where XXX is a name.
That operator might be buried 8 levels deep in subprocesses, and finding it a time consuming process. The global search doesn't seem to return anything I'm finding useful.
How do I locate it quickly?
Cheers!
I'm looking at a colleagues rapid miner file, which is quite large. I'm trying to find certain operators (I think that's the correct term)... such as Filters that he has called things like "Filter All XXX" where XXX is a name.
That operator might be buried 8 levels deep in subprocesses, and finding it a time consuming process. The global search doesn't seem to return anything I'm finding useful.
How do I locate it quickly?
Cheers!
0
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi!
A better manual method is looking at the tree view of your process. (View menu => Show Panel => Tree)
But it might be easier to open the XML view (View => Show Panel => XML), copy everything into the editor of your choice, and find the operators there. This is also a good approach for making global changes in some situations, e. g. changing parameter values like connection names globally. But of course you have to be very careful to preserve the XML structure.
Regards,
Balázs8
Answers
I'm a bit surprised there isn't a way to find something by name, but I understand your option. I just built a quick script to pull everything out of the XML file and traverse it backwards and print everything out, kind of with a tree view so I can find things easily.
Thanks again!