StanDiagnose.jl

WIP: Wrapper package for the diagnose method in Stan's cmdstan executable.
Author StanJulia
Popularity
0 Stars
Updated Last
1 Year Ago
Started In
July 2019

StanDiagnose.jl

Project Status Build Status

Important note

Refactoring CmdStan.jl v6. Maybe this is an ok approach.

Installation

This package is registered. Install with

pkg> add StanDiagnose.jl

You need a working Stan's cmdstan installation, the path of which you should specify either in CMDSTAN or JULIA_CMDSTAN_HOME, eg in your ~/.julia/config/startup.jl have a line like

# CmdStan setup
ENV["JULIA_CMDSTAN_HOME"] = expanduser("~/src/cmdstan-2.19.1/") # replace with your path

This package is derived from Tamas Papp's StanRun.jl package.

Usage

It is recommended that you start your Julia process with multiple worker processes to take advantage of parallel sampling, eg

julia -p auto

Otherwise, stan_sample will use a single process.

Use this package like this:

using StanDiagnose

See the docstrings (in particular ?StanDiagnose) for more.