Metadata-Version: 2.1
Name: stanio
Version: 0.2.0
Author-email: Brian Ward <bward@flatironinstitute.org>
License: BSD-3-Clause
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# StanIO

A set of functions for data-wrangling in the formats used by
the [Stan](https://mc-stan.org) probabalistic programming language.

## Features

- Writing Python dictionaries to Stan-compatible JSON
- Basic reading of StanCSV files into numpy arrays
- Parameter extraction from numpy arrays based on StanCSV headers
  - e.g., if you have a `matrix[2,3] x` in a Stan program, extracting `x` will give you a `(num_draws, 2, 3)` numpy array
