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
Groovy reference
Hi,
It seems it is impossible to find Groovy lang scripting reference for RapidMiner.
Is it available? How to know what packages are implemented and how to access them?
I cannot find any clue how to use JsonOutput class in Execute Stript object!
But my question is general - where the hell is the scripting guide???
It seems it is impossible to find Groovy lang scripting reference for RapidMiner.
Is it available? How to know what packages are implemented and how to access them?
I cannot find any clue how to use JsonOutput class in Execute Stript object!
But my question is general - where the hell is the scripting guide???
Tagged:
0
Answers
if you plan to do any complex coding it might be easier to just write an extension (and then copy a code snippet from there into an Execute Script operator if needed).
https://github.com/rapidminer/rapidminer-extension-template
Do you mean this JsonOutput class?
https://github.com/apache/groovy/blob/master/subprojects/groovy-json/src/main/java/groovy/json/JsonOutput.java
Either import the class via
or use the fully qualified name to access the class
Greetings,
Jonas