StanDump.jl

Julia library for dumping data to be read by Stan.
Author tpapp
Popularity
3 Stars
Updated Last
12 Months Ago
Started In
May 2017

StanDump.jl

lifecycle Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. build codecov.io

Julia package for saving data (arrays and scalars) in a format that can be read by cmdstan.

Example usage

N = 200
stan_dump("/tmp/test.data.R", (N = N, x = randn(N)))

stan_dump(target, data) is the main entry point. The first argument is usually a filename (see its docstring for other options), while the data is specified as a NamedTuple.

Variable names are minimally validated. Only supports types understood by cmdstan.

Used By Packages