conver a dataframe column to lower string code example
Example 1: pandas convert all column names to lowercase
# rename Pandas columns to lower case
df.columns= df.columns.str.lower()
df.columns
Index(['column1', 'column2', 'column3'], dtype='object')
Example 2: convert all strings in dataframe to lowercase R
RecordsWithIssues$OTHERCOUNTRY <- tolower(RecordsWithIssues$OTHERCOUNTRY)