Categories

Versions

You are viewing the RapidMiner Developers documentation for version 9.5 -Check here for latest version

Extensions

Learnstep-by-stephow to build and deploy your own RapidMiner extension. You can create your own operators, UI elements or data objects according to your needs.

Quick Start

  1. Checkout theextension template.

  2. In the filebuild.gradle, set thenameof the extension (that is, replace'Template'with the desired name). For example:

    extensionConfig { // The extension name name MyNewExtension
  3. 初始化扩展项目执行Gradle taskinitializeExtensionProject. For example:

    gradlew --no-daemon initializeExtensionProject
  4. Add an icon for the extension by placing an image namedicon.pnginsrc/main/resources/META-INF/.

  5. Build and install your extension by executing theinstallExtensionGradle task.

  6. Start RapidMiner Studio and check whether your extension has been loaded.

  7. Happy coding!

More information

Templates & Tutorials

As extension developer you can provide both your own templates and tutorials. Templates are processes that serve as starting point for complex workflows and can be selected from theNew Processmenu. A tutorial is a series of processes accompanied by explanatory texts that can be used to introduce new functionality step by step. Tutorials can be started via theLearnmenu.

Sample repositories

A sample repository can be used to ship sample data that does not belong to a template or tutorial with an extension.