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.

ExampleSet2ClusterModel

emaema Member Posts: 33 Maven
Hi,

Can any one please post an example (in xml) of how to use the new operator

ExampleSet2ClusterModel


Thank you

Answers

  • landland RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 2,531 Unicorn
    Hi,
    this operator creates a flat cluster model using a nominal attribute and dividing the exampleset by this attribute over the clusters. Every value is mapped onto a cluster, including the unkown value. This operator will create a cluster attribute if not present yet.
    <operator name="Root" class="Process" expanded="yes">
        <operator name="NominalExampleSetGenerator" class="NominalExampleSetGenerator">
        </operator>
        <operator name="ExampleSet2ClusterModel" class="ExampleSet2ClusterModel">
            <parameter key="attribute" value="att1"/>
            <parameter key="keep_example_set" value="true"/>
        </operator>
        <operator name="ClusterModel2ExampleSet" class="ClusterModel2ExampleSet">
        </operator>
    </operator>
    Greetings,
      Sebastian
  • emaema Member Posts: 33 Maven
    Thank you very much I really appreciate it

Sign In or Register to comment.