Skip to content
Advertisement

Dropping duplicate rows ignoring case (lowercase or Uppercase)

I have a data frame with one column (col). I’m trying to remove duplicate records regardless of lowercase or Uppercase, for example

JavaScript

output:

JavaScript

Expected Output:

JavaScript

How can this Dropping be done regardless of case-insensitively?

Advertisement

Answer

You could use:

JavaScript

output:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement