https://blog.csdn.net/weixin_46111814/article/details/105620779
1. NA
- 空值,元素位置存在,但没有值
- 可用作颜色中的
无色
- 用
is.na()
来判断是否为NA
2. NULL
- 元素位置不存在
- 用
is.null()
来判断是否为NULL
3. Inf / -Inf
Inf
: 正无穷
-Inf
: 负无穷
- 用
is.infinite()
来判断是否为Inf
或者-Inf
4. NAN
Not A Number
:不是一个数字
- 用
is.null()
来判断是否为NULL
网友评论