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
Split cell data into rows
thiago_caixeta
Member Posts: 3 Learner III
in Help
Hello,
Is there a way to split data in a cell to rows, instead columns?
Example:
What I really need now is the results one below the other, instead of columns....
Thank you!
Is there a way to split data in a cell to rows, instead columns?
Example:
What I really need now is the results one below the other, instead of columns....
Thank you!
Tagged:
0
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi,
you first split to columns, then use De-Pivot to transform these to rows.
Usually it's good to only work on a subset of your attributes (the column you want to split and some kind of Id column to join back later) because de-pivot makes working with all columns harder.
Regards,
Balázs8
Answers
Dortmund, Germany
Yes, is there a way to do it?
I propose an alternative method using a Python script (Pandas library) to perform what you want to do :
To execute this process, you will need :
- to install Python on your computer.
- to install the Python Scripting extension from the Marketplace.
The process :
Hope this helps,
Regards,
Lionel
Thank you very much for your help!!