当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 is.numeric()用法及代码示例


is.numeric()R语言中的函数用于检查作为参数传递给它的对象是否为数字类型。

用法: is.numeric(x)

参数:
x:检查对象

范例1:


# R program to check if 
# object is of numeric type
  
# Calling is.numeric() function
is.numeric(1)
is.numeric(1.5)
is.numeric(-1.5)

输出:

[1] TRUE
[1] TRUE
[1] TRUE

范例2:


# R program to check if 
# object is of numeric type
  
# Creating a matrix
x1 <- matrix(c(1:9), 3, 3)
  
# Calling is.numeric() function
is.numeric(x1)

输出:

[1] TRUE

注:本文由纯净天空筛选整理自GeeksforGeeks大神的英文原创作品 Check if an Object is of Type Numeric in R Programming – is.numeric() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。