I have Column in a data frame where the values are repeated like x,x,y,y,z,z,e,e,x,x,y,x,z
I need to write a code where it creates x table y table z table e table separately at a time
or we need to write each and every unique value to each table????
| Column A | Column B | 
|---|---|
| Cell 1 | Bangalore | 
| Cell 3 | Chennai | 
| Chennai | |
| Bangalore | 
I Expected to convert all the unique values table at a time
| header 1 | header 2 | 
|---|---|
| cell 1 | Bangalore | 
| cell 3 | Bangalore | 
| header 1 | header 2 | 
|---|---|
| cell 1 | chennai | 
| cell 3 | chennai | 
