I have a dataframe OwnerMaster
accoutMasterId | OwnerMasterId |Owner name |
123 | ABC | Jack |
456 | DEF | Amy |
789 | ABC | Rach |
I want a new dataframe which have data like:
accoutMasterIdArray | OwnerMasterId
{123,789} | ABC
{456} | DEF
accoutMasterIdArray field will be ArrayType. Any suggestions?