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.
"Plotting in R with RapidMiner"
Problem: You've decided to use plot inside of your Execute R operator but when you return the plot you get no plot when the process is run, instead you get a description tab that says
File Memory Buffered File
Example of plot in R
rm_main = function(data)
{
plot(1:5,2:6)
return(plot)
}
Solution: If you do not want to rely on the charting plots that come preloaded with your RapidMiner Studio, y
ou should export the plot in your R script using any of the supported formats.
Here is an example doing so to a pdf
pdf(“C:/Users/.../Desktop/plots.pdf”)
plot(1:5,2:6)
dev.off()
You can find other formats here
http://www.cookbook-r.com/Graphs/Output_to_a_file/
Tagged:
0