Hello,
Computer engineer student here, new to data science but what I want is fairly simple in notion but I couldn't find the right operators to do it yet or maybe I have and don't know how to use them, so here we go:
1.I have 22 attributes, 20 of which I want them to be integers that very from 0.2 to 2.8 depending on the attribute (the first 2 are just strings).
2.Is there a way to generate with dependency on what was generate before, need an example to explain better, lets say we have one example with attribute 1 that generated 1.4 that's, 0.4 above average for that specific attribute, so the next one, attribute 2, will generate 0.9 (0.5 which is the average for that attribute + the difference from the one before 0.4 so 0.5+0.4) making the generation pseudo-random.
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="generate_data_user_specification" compatibility="8.1.001" expanded="true" height="68" name="Generate Data by User Specification" width="90" x="313" y="136">
<list key="attribute_values">
<parameter key="ID" value="NOMINAL"/>
<parameter key="Name" value="NOMINAL"/>
<parameter key="P1" value="REAL"/>
<parameter key="P2" value="REAL"/>
<parameter key="P3" value="REAL"/>
<parameter key="P4" value="REAL"/>
<parameter key="P5" value="REAL"/>
<parameter key="P6" value="REAL"/>
<parameter key="P7" value="REAL"/>
<parameter key="P8" value="REAL"/>
<parameter key="P9" value="REAL"/>
<parameter key="P10" value="REAL"/>
<parameter key="P11" value="REAL"/>
<parameter key="P12" value="REAL"/>
<parameter key="P13" value="REAL"/>
<parameter key="P14" value="REAL"/>
<parameter key="P15" value="REAL"/>
<parameter key="P16" value="REAL"/>
<parameter key="P17" value="REAL"/>
<parameter key="P18" value="REAL"/>
<parameter key="P19" value="REAL"/>
<parameter key="P20" value="REAL"/>
</list>
<list key="set_additional_roles">
<parameter key="ID" value="id"/>
<parameter key="Name" value="label"/>
</list>
</operator>
</process>
I am definitely doing something wrong :smileysad: