SVDGP package provides tools for the decomposition, modeling, and prediction of spatio-temporal functions represented as:
where the function
You can install the latest version of the package manually or directly from GitHub.
Make sure you have the devtools
package installed, then use:
install.packages("devtools")
devtools::install_github("TheseAdama/SVDGP")
-
Download the ZIP or TAR.GZ file Download the latest version of the package in ZIP or TAR.GZ format.
- For Windows:
SVDGP_x.y.z.zip
- For Linux/macOS:
SVDGP_x.y.z.tar.gz
- For Windows:
-
Install the package manually in R
Open your R session and run one of the following commands, replacing the file path with where you downloaded the archive:
-
On Windows:
install.packages("path/to/SVDGP_x.y.z.zip", repos = NULL, type = "win.binary")
-
On Linux/macOS:
install.packages("path/to/SVDGP_x.y.z.tar.gz", repos = NULL, type = "source")
-
After installation, load the package:
library(SVDGP)