Learn R Programming

SPQR (version 0.1.0)

save.SPQR: save fitted SPQR model

Description

Save SPQR object in a designated directory. If SPQR is fitted with method = "MCMC" then only a .SPQR file is saved; otherwise, a .pt file storing the fitted torch model is also saved.

Usage

save.SPQR(object, name = stop("`name` must be specified"), path = NULL)

Arguments

object

An object of class SPQR.

name

The name of the saved object excluding extension.

path

The path to save the object. Default is the current working directory.

Value

No return value, called for side effects.

Examples

Run this code
# 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")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab