Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
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