R で文字列を小文字に変換する方法 (例あり)
R に組み込まれているto lower()関数を使用して、文字列を小文字に変換できます。
#convert string to lowercase
tolower(string_name)
次の例は、この関数を実際に使用する方法を示しています。
例 1: 単一の文字列を小文字に変換する
次のコードは、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."
to lower()関数は文字列内のすべての文字を小文字に変換することに注意してください。
例 2: 列内の各文字列を小文字に変換する
次のコードは、データ フレームの列内の各文字列を小文字に変換する方法を示しています。
#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
例 3: 複数列の文字列を小文字に変換する
次のコードは、データ フレームの複数の列の文字列を小文字に変換する方法を示しています。
#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
追加リソース
次のチュートリアルでは、R で他の一般的な文字列関連のタスクを実行する方法について説明します。
R で str_split を使用する方法
R で str_replace を使用する方法
Rでベクトルを文字列に変換する方法