Hello,
I was wondrering if there was a way to Rename the results of Association Rules. Here is my code
<?xml version="1.0" encoding="UTF-8"?><process version="7.4.000">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="7.4.000" expanded="true" name="Process">
<process expanded="true">
<operator activated="true" class="retrieve" compatibility="7.4.000" expanded="true" height="68" name="Retrieve" width="90" x="45" y="136">
<parameter key="repository_entry" value="../data/testData"/>
</operator>
<operator activated="false" class="read_excel" compatibility="7.4.000" expanded="true" height="68" name="Read Excel" width="90" x="45" y="34">
<parameter key="excel_file" value="C:\Users\Stefi\Desktop\Diplomatiki\results\re.xlsx"/>
<parameter key="imported_cell_range" value="A1:BM705"/>
<list key="annotations"/>
<list key="data_set_meta_data_information"/>
</operator>
<operator activated="true" class="numerical_to_binominal" compatibility="7.4.000" expanded="true" height="82" name="Numerical to Binominal" width="90" x="179" y="136">
<parameter key="include_special_attributes" value="true"/>
</operator>
<operator activated="true" class="fp_growth" compatibility="7.4.000" expanded="true" height="82" name="FP-Growth" width="90" x="313" y="136">
<parameter key="find_min_number_of_itemsets" value="false"/>
<parameter key="min_support" value="0.001"/>
</operator>
<operator activated="true" class="create_association_rules" compatibility="7.4.000" expanded="true" height="82" name="Create Association Rules" width="90" x="447" y="136"/>
<operator activated="true" class="store" compatibility="7.4.000" expanded="true" height="68" name="Store" width="90" x="581" y="136">
<parameter key="repository_entry" value="../data/AssociationRules"/>
</operator>
<connect from_op="Retrieve" from_port="output" to_op="Numerical to Binominal" to_port="example set input"/>
<connect from_op="Numerical to Binominal" from_port="example set output" to_op="FP-Growth" to_port="example set"/>
<connect from_op="FP-Growth" from_port="frequent sets" to_op="Create Association Rules" to_port="item sets"/>
<connect from_op="Create Association Rules" from_port="rules" to_op="Store" to_port="input"/>
<connect from_op="Store" from_port="through" to_port="result 1"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
<portSpacing port="sink_result 2" spacing="0"/>
</process>
</operator>
</process>
And these are my results among others
My question is that i want to translate these IDs (eg '321-1106') to 'Data Bases' (for example).
Is there any way to do this?
Thanks in advance,
stfn