I have a CSV file which has multiple duplicate values in the row. I Would like to remove these duplicate values so I am only left with the unique values.
Dataframe:
 1                            2          3                   4           5                              6    
Bypass User Account Control  T3431      Elevated Execution   T3424      Bypass User Account Control    T3431
Local Account                T3523      Domain Account       T4252      Local Account                  T3523
Expected Dataframe:
  1                            2          3                   4           5                              6    
Bypass User Account Control  T3431      Elevated Execution   T3424      
Local Account                T3523      Domain Account       T4252                         
There are 100's of duplicate data in the rows and i would only like to see the unique values
 
     
     
    