Package 'gptoolsStan'

Title: Gaussian Processes on Graphs and Lattices in 'Stan'
Description: Gaussian processes are flexible distributions to model functional data. Whilst theoretically appealing, they are computationally cumbersome except for small datasets. This package implements two methods for scaling Gaussian process inference in 'Stan'. First, a sparse approximation of the likelihood that is generally applicable and, second, an exact method for regularly spaced data modeled by stationary kernels using fast Fourier methods. Utility functions are provided to compile and fit 'Stan' models using the 'cmdstanr' interface. References: Hoffmann and Onnela (2022) <doi:10.48550/arXiv.2301.08836>.
Authors: Till Hoffmann [aut, cre] , Jukka-Pekka Onnela [ctb]
Maintainer: Till Hoffmann <[email protected]>
License: MIT + file LICENSE
Version: 0.2.0
Built: 2025-03-12 06:00:36 UTC
Source: https://github.com/cran/gptoolsStan

Help Index


Get the 'gptoolsStan' include path for compiling 'Stan' programs.

Description

Get the 'gptoolsStan' include path for compiling 'Stan' programs.

Usage

gptools_include_path()

Value

Path to the directory containing source files for 'gptoolsStan' as characters.

Examples

## Not run: 
library(cmdstanr)
library(gptoolsStan)

# Compile the model with paths set up to include 'Stan' sources from 'gptoolsStan'.
model <- cmdstan_model(
    stan_file = "/path/to/your/model.stan",
    include_paths = gptools_include_path(),
)

## End(Not run)