as.integer()
R語言中的函數用於將字符對象轉換為整數對象。
用法: as.integer(x)
參數:
x:角色對象
範例1:
# R program to convert a character object
# to an integer object
# Calling as.integer() function
as.integer("4")
as.integer("1.6")
as.integer("-3.2")
as.integer("0x400")
輸出:
[1] 4 [1] 1 [1] -3 [1] 1024
範例2:
# R program to convert a character object
# to an integer object
# Creating a vector
x <- c(1, 2, 3, 4, 5)
# Check if the vector is an integer
is.integer(x)
# Convert to integer
x1 <- as.integer(x)
x1
# Calling is.integer() function
is.integer(x1)
輸出:
[1] FALSE [1] 1 2 3 4 5 [1] TRUE
相關用法
- R語言 as.character()用法及代碼示例
- R語言 is.integer()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 utf8ToInt()用法及代碼示例
- R語言 intToUtf8()用法及代碼示例
- R語言 intToBits()用法及代碼示例
- R語言 as.binary()用法及代碼示例
- R語言 as.list()用法及代碼示例
- R語言 as.logical()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 as.table()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert a Character Object to Integer in R Programming – as.integer() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。