I have the following dataframe:
COL1 | COL2 | COL3
'Mary'| 'John' | 'Adam'
How can I reorder this row so that 'Mary', 'John', and 'Adam' are ordered alphabetically in COL1, COL2, and COL3, like so:
COL1 | COL2 | COL3
'Adam'| 'John' | 'Mary'