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

Examples for the R Scripting operator have errors - confirmation sought for possible solution.

AndrewAndrew RapidMiner Certified Expert, RapidMiner Certified Master, Member Posts: 47 Guru
The examples that come with the R scripting operator (I have 9.6.000 installed) don't always work. 

After a bit of investigation, it turns out that the rm_main function must return data frames and not data.table objects. 

So, this fragment of code from the end of the example that comes with the R script operator doesn't work.
return(list(data,data2))
While this does
return(list(data.frame(data),data.frame(data2)))
Would it be possible to get confirmation that I'm right?
Tagged:
Sign In or Register to comment.