Hello!
I'm wanting to rename some column variables.
For example: in the "PAIS_ORIGEN" column, change "BR - BRAZIL" to BRAZIL
In the "PAIS_PROCEDENCIA" column, change "AR - ARGENTINA" to ARGENTINA
My data is in the "Base" dataframe
Base %>% rename(PAIS_ORIGEN, ARGENTINA="AR - ARGENTINA", PAIS_PROCEDENCIA, BRAZIL=" BR - BRAZIL")