Description Usage Arguments Details Value Note Author(s) References See Also Examples
Returns a logical vector or matrix describing the type of numeric elements present. This distinguishes between infinite values, NaN's, missing values and ordinary numbers.
1 | is.inf(x)
|
x |
numeric vector of values. Check performs for all values. |
These functions are created for compatibility with SPLUS.
Returns an object similar to the input which is filled logical values. Values will be false for vectors that are not of mode "numeric".
is.infinite is TRUE for values of x that are either plus or minus infinity.
is.inf is an abbreviation for is.infinite
In nlr
package this function use in eval
method of nl.form
to identify the computed response and predictor is right.
Hossein Riazoshams, 2013. Email: riazihosein@gmail.com URL http://www.riazoshams.com/nlr/
Riazoshams H, Midi H, and Ghilagaber G, 2018,. Robust Nonlinear Regression, with Application using R, Joh Wiley and Sons.
1 2 3 | aaray=c(0,3/0)
is.inf(aaray)
is.missing(aaray)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.