df convert all values to lowercase code example
Example 1: pandas convert all string columns to lowercase
df = df.applymap(lambda s:s.lower() if type(s) == str else s)
Example 2: convert all strings in dataframe to lowercase R
RecordsWithIssues$OTHERCOUNTRY <- tolower(RecordsWithIssues$OTHERCOUNTRY)