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.

How to export the RM results.

paulgureghianpaulgureghian Member Posts: 3 Learner I
edited December 2018 in Help

How to export the output of RM to a Python file.  or any kind of file. how to use the RM info in a Python script manually ? 

Tagged:

Answers

  • rfuentealbarfuentealba RapidMiner Certified Analyst, Member, University Professor Posts: 568 Unicorn

    Hi Paul,

     

    You can do it in many ways, but here are two simple ones.

     

    1. Instead of "exporting" your results to Python, you can use the Python Extension for RapidMiner Studio/Server. Both your inputs and outputs are, in this case, pandas frames.
    2. Your results could be exported as CSV files with the "Write CSV" operator. Then with any CSV library, you can import to Python separately.

    The advantage of using the Python Extension is that your project is contained within RapidMiner, and that gives you a lot of flexibility (I just tweeted about a case here, where I had to extend RapidMiner's functionalities with Python because there are no lemmatization systems available for Spanish). The advantage of exporting your results to CSV, Excel or a Database are that you aren't limited to Python, and can use Java, Ruby, or whatever you want with the proper libraries.

     

    Hope this helps,

     

Sign In or Register to comment.