nano_load | R Documentation |
Loads nano object which has been saved using the nano_save
function.
nano_load(path)
path |
a character. Path of the directory where the nano object is saved in. |
A nano object is able to be saved using the nano_save
function. The
nano_load
function is then used to load the data back as a nano object.
a nano object.
## Not run:
if(interactive()){
library(h2o)
library(nano)
h2o.init()
# import dataset
data(property_prices)
# create model
nano <- nano_automl(data = data,
response = "sale_price")
# save nano object
nano_save(nano, tempdir())
# load back nano object
nano_load(tempdir())
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.