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
"[SOLVED]Problem with the extension tutorial"
Hi all,
i try to learn how to write extension for RapidMiner, but I have a problem with the Tutorial "How to extend rapidminer", the Chapter 2 "Using the Scripting Operator" used a "Log" data set as example set, but I can not find where I can download the data set. Can you tell me, where are the example data sets and where are the example codes?
Thanks very much!
Conny
i try to learn how to write extension for RapidMiner, but I have a problem with the Tutorial "How to extend rapidminer", the Chapter 2 "Using the Scripting Operator" used a "Log" data set as example set, but I can not find where I can download the data set. Can you tell me, where are the example data sets and where are the example codes?
Thanks very much!
Conny
Tagged:
0
Answers
I have bad news and good news for you.
The bad: I'm afraid the Log data is not available anywhere.
The good: You can easily substitute it with the "Iris" dataset. What the tutorial is trying to teach you is how to access existing data and manipulate it. You don't need the exact data described in the tutorial.
What you need to do:
- replace the "Log" data with the "Iris" data from the Samples repository
- change the call from 'attributes.get("relative time")' to 'attributes.get("a1")'. In other words, you now take the "a1" attribute of the Deals data
- change "Ontology .DATE TIME" to "Ontology.REAL". This means you want to create a numeric attribute instead of a datetime attribute. You could create a datetime attribute anyway, but it's kinda boring because it will only differ by seconds, if at all because the numbers are too small.
The concept of things stays the sameRegards,
Marco
Thanks very much for the answer!
Best reguards
Conny