Options

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

  • Options
    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
  • Options
    emaema Member Posts: 33 Maven
    Thank you very much I really appreciate it

Sign In or Register to comment.