fill_na.mcmc_data | R Documentation |
Fills all of an object's missing values while preserving the object's dimensionality and class.
## S3 method for class 'mcmc_data'
fill_na(x, value = 0, ...)
x |
An object. |
value |
A scalar of the value to replace values with. |
... |
Other arguments passed to methods. |
It should only be defined for objects with values of consistent class ie not standard data.frames.
The modified object.
fill_na(logical)
: Fill Missing Values for logical Objects
fill_na(integer)
: Fill Missing Values for integer Objects
fill_na(numeric)
: Fill Missing Values for numeric Objects
fill_na(character)
: Fill Missing Values for character Objects
Other fill:
fill_all()
# logical
fill_na(c(TRUE, NA))
# integer
fill_na(c(1L, NA), 0)
# numeric
fill_na(c(1, NA), Inf)
# character
fill_na(c("text", NA))
fill_na(matrix(c("text", NA)), value = Inf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.