I have a tibble in R with only one column and ~2Million rows. Each row contains multiple values separated by semicolon. The first row contains header values. I need help to split this tibble into multiple columns.
Below is the present format:
Value |
---|
Group Name;Group Level;Member;Member_Type |
A;0;XYZ;User |
A;0;XX;User |
B;1;XXY;Group |
B;0;XY;User |
Need to convert it into:
Group Name | Group Level | Member | Member_Type |
---|---|---|---|
A | 0 | XYZ | User |
A | 0 | XX | User |
B | 1 | XXY | Group |
B | 0 | XY | Group |