在本文中,我们将讨论如何在 R 编程语言中将字符转换为数字。
我们可以使用 as.numeric() 函数将其转换为数字。
用法:
as.numeric(character)
其中,character 是一个字符向量
示例:
R
# create a vector with 5 characters
data = c('1', '2', '3', '4', '5')
# display type
class(data)
# convert to numeric
final = as.numeric(data)
print(final)
# display type
class(final)
输出:
[1] "character" [1] 1 2 3 4 5 [1] "numeric"
将列从字符转换为数字
在这里,我们正在考虑一个 DataFrame ,然后将 DataFrame 列从字符转换为数字。
用法:
as.numeric(dataframe$column_name)
示例:
R
# create a dataframe with 4 rows and 3 columns
data = data.frame(marks1=c('90', '78', '89', '76'),
marks2=c('92', '68', '78', '96'),
marks3=c('90', '78', '89', '76'))
# convert to numeric for marks1 column
print(as.numeric(data$marks1))
# convert to numeric for marks2 column
print(as.numeric(data$marks2))
# convert to numeric for marks3 column
print(as.numeric(data$marks3))
输出:
[1] 90 78 89 76 [1] 92 68 78 96 [1] 90 78 89 76
相关用法
- R语言 as.character()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R Character Matrix转Numeric Matrix用法及代码示例
- R语言 data.matrix()用法及代码示例
- R DataFrame Column转Numeric用法及代码示例
- SQL NUMERIC转NVARCHAR用法及代码示例
- R Date转Numeric用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 between()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 cumsum()用法及代码示例
- R语言 atanh()用法及代码示例
注:本文由纯净天空筛选整理自171fa07058大神的英文原创作品 How to Convert Character to Numeric in R?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。