A program to recognize and reward our most engaged community members
So for example when I have lat and long as points on a Map in RM usinge R extension can I use the points that are displayed for clustering?
Yes, you can use the points that are displayed for clustering provided you write your R code to pass that data back to a RapidMiner process.
Something like this:
rm_main=function(data)
{
library maplibrary
some R code to generate your stuff
data <- mylatlongforclustering
return (data)
}