Load saved SPQR model from a designated path. The function first loads
the .SPQR
file that stores the SPQR
object. It then checks
whether the SPQR model is fitted with method = "MCMC"
. If not, it also
loads the .pt
file storing the torch
model with the same name
and attach it to the SPQR
object.
load.SPQR(name = stop("`name` must be specified"), path = NULL)
The name of the saved object excluding extension.
The path to look for the saved object. Default is the current working directory.
An object of class SPQR
.
# NOT RUN {
set.seed(919)
n <- 200
X <- rbinom(n, 1, 0.5)
Y <- rnorm(n, X, 0.8)
fit <- SPQR(X = X, Y = Y, method = "MCMC", normalize = TRUE, verbose = FALSE)
# save.SPQR(fit, name = "mcmc_fit")
# fit <- load.SPQR("mcmc_fit")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab