Come convertire le stringhe in minuscolo in r (con esempi)


È possibile utilizzare la funzione tolower() incorporata in R per convertire le stringhe in lettere minuscole.

 #convert string to lowercase
tolower(string_name)

I seguenti esempi mostrano come utilizzare questa funzione nella pratica.

Esempio 1: convertire una singola stringa in minuscolo

Il codice seguente mostra come convertire una singola stringa in minuscolo in R:

 #create string
my_string <- ' THIS IS A SENTENCE WITH WORDS. '

#convert string to all lowercase
tolower(my_string)

[1] "this is a sentence with words."

Tieni presente che la funzione tolower() converte tutti i caratteri di una stringa in minuscolo

Esempio 2: converti ogni stringa in una colonna in minuscolo

Il codice seguente mostra come convertire ogni stringa in una colonna di un frame di dati in lettere minuscole:

 #create data frame
df <- data. frame (team=c('Mavs', 'Nets', 'Spurs'),
                 dots=c(99, 94, 85),
                 rebounds=c(31, 22, 29))

#view data frame
df

   team points rebounds
1 Mavs 99 31
2 Nets 94 22
3 Spurs 85 29

#convert team names to lowercase
df$team <- tolower(df$team)

#view updated data frame
df

   team points rebounds
1 mavs 99 31
2 net 94 22
3 spurs 85 29

Esempio 3: convertire stringhe a più colonne in lettere minuscole

Il codice seguente mostra come convertire le stringhe in più colonne di un frame di dati in lettere minuscole:

 #create data frame
df <- data. frame (team=c('Mavs', 'Nets', 'Spurs'),
                 conf=c('WEST', 'EAST', 'WEST'),
                 dots=c(99, 94, 85))

#view data frame
df

   team conf points
1 Mavs WEST 99
2 Nets EAST 94
3 Spurs WEST 85

#convert team and conference to lowercase
df[c(' team ', ' conf ')] <- sapply(df[c(' team ', ' conf ')], function (x) tolower(x))

#view updated data frame
df
   team conf points
1 mavs west 99
2 net east 94
3 spurs west 85

Risorse addizionali

I seguenti tutorial spiegano come eseguire altre attività comuni relative alle stringhe in R:

Come utilizzare str_split in R
Come utilizzare str_replace in R
Come convertire un vettore in una stringa in R

Aggiungi un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *