View source: R/decode_binary.R
decodeBinary | R Documentation |
Decode a given string of a serialized object.
decodeBinary(bin, package = NULL)
bin |
('character(1L)') Binary string value containing the serialized model. |
package |
('character(1L)') Package required for object deserialization (default is 'NULL'). |
Deserialized object from 'bin'
Daniel S.
mod = lm(Sepal.Width ~ ., data = iris)
bin = encodeObject(mod)
mod_b = decodeBinary(bin)
all.equal(mod, mod_b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.