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
How to pass string between operators?
I am working on an extension where I will define a model in a string with some operator and then pass the model to a Python operator to parse the model. I noticed that I can only deliver IOObject through the output ports, how can I pass a string between ports? How can I pass a string from self-defined operators to a Python script operator as input?
0
Best Answers
-
jwpfau Employee-RapidMiner, Member Posts: 303 RM EngineeringHi,
what you could also try:
- Generate the complete python code and pass it as a FileObject (for the scr port) or call the Execute Python operator from your code
- Use Macros
Greetings,
Jonas0
Answers
Could you give me some examples? I still have no idea.