Options

"Write Clustering Results in Excel"

HSG_MinerHSG_Miner Member Posts: 3 Contributor I
edited June 2019 in Help
Hi there,

After using rapidminer to cluster data, I would like to export these results in excel. Using the operators transpose and write excel didnt work out.

Can anybody suggest another solution.

thx for your support

HSG_Miner
Tagged:

Answers

  • Options
    frasfras Member Posts: 93 Contributor II
    What about this:

    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <process version="6.0.003">
      <context>
        <input/>
        <output/>
        <macros/>
      </context>
      <operator activated="true" class="process" compatibility="6.0.002" expanded="true" name="Process">
        <process expanded="true">
          <operator activated="true" class="retrieve" compatibility="6.0.003" expanded="true" height="60" name="Ripley-Set" width="90" x="45" y="30">
            <parameter key="repository_entry" value="//Samples/data/Ripley-Set"/>
          </operator>
          <operator activated="true" class="k_means" compatibility="6.0.003" expanded="true" height="76" name="Clustering" width="90" x="179" y="30"/>
          <operator activated="true" class="write_excel" compatibility="6.0.003" expanded="true" height="76" name="Write Excel" width="90" x="313" y="75">
            <parameter key="excel_file" value="C:\Users\fras\Desktop\cluster.xls"/>
          </operator>
          <connect from_op="Ripley-Set" from_port="output" to_op="Clustering" to_port="example set"/>
          <connect from_op="Clustering" from_port="cluster model" to_port="result 1"/>
          <connect from_op="Clustering" from_port="clustered set" to_op="Write Excel" to_port="input"/>
          <portSpacing port="source_input 1" spacing="0"/>
          <portSpacing port="sink_result 1" spacing="0"/>
          <portSpacing port="sink_result 2" spacing="0"/>
        </process>
      </operator>
    </process>

Sign In or Register to comment.