The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"generating attribute with time series data ERROR"
I'm trying to generate an a trend attribute.
unixtime, price, amount
1,3,5
2,5,7
....
I apply windowing, which creates these new attributes
price-0, price-1, price-2 ...
Next I try to generate a trend attribute so I use this expression
if(label>price-9,1,if(label==price-9,0,-1))
Pronlem is Rapidminer interprets price-9 as price minus 9, instead of the variable name. I can't change the variable names, because they are generated by RapidMiner in the windowing. How can I fix this?
unixtime, price, amount
1,3,5
2,5,7
....
I apply windowing, which creates these new attributes
price-0, price-1, price-2 ...
Next I try to generate a trend attribute so I use this expression
if(label>price-9,1,if(label==price-9,0,-1))
Pronlem is Rapidminer interprets price-9 as price minus 9, instead of the variable name. I can't change the variable names, because they are generated by RapidMiner in the windowing. How can I fix this?
Tagged:
0
Answers
you can change the attribute names with the Rename by Replace operator. Just enter something like '-' into the replace_what parameter, and '_' into replace_by.
Best,
Marius