is.notinf {GLDEX} | R Documentation |
This function works in similar fashion as in is.na
and is.inf
.
is.notinf(x)
x |
A numerical value or a vector of data. |
A logical vector, T
if the value is not Inf or -Inf.
In the presence of missing value, the function will return a missing value.
Steve Su
is.notinf(c(Inf,2,2,1,-Inf))