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 create new Rows data based on split character values in Column data
I have data like as below
How do i generate new rows based on the column which has , on them
Name | Subject | Grade |
John | Eng,Math | A,B |
Clarice | Eng,Science | O,B |
Kennedy | Math | O |
Kevin | Eng | A |
How do i generate new rows based on the column which has , on them
Name | Subject | Grade |
John | Eng | A |
John | Math | B |
Clarice | Eng | O |
Clarice | Science | B |
Kennedy | Math | O |
Kevin | Eng | A |
Tagged:
0
Best Answer
-
MartinLiebig Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert, University Professor Posts: 3,533 RM Data ScientistHi,you want to use Split+DePivot as operators.
Best,Martin- Sr. Director Data Solutions, Altair RapidMiner -
Dortmund, Germany5
Answers
It is working now .. Thank you