Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itsdfish/ssmplots.jl

A Julia package for plotting sequential sampling models
https://github.com/itsdfish/ssmplots.jl

drift-diffusion-model evidence-accumulation-model julia julia-language julialang linear-ballistic-accumulator sequential-sampling-models

Last synced: about 1 month ago
JSON representation

A Julia package for plotting sequential sampling models

Awesome Lists containing this project

README

        

| :exclamation: Important Note |
|-----------------------------------------|
This Repo has been decomissioned for SequentialSamplingModels 0.8.0 and higher in favor of conditional loading of plotting functionality.

# SSMPlots
[![](docs/logo/logo.png)](https://itsdfish.github.io/SSMPlots.jl/dev/)

[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://itsdfish.github.io/SSMPlots.jl/dev/) [![CI](https://github.com/itsdfish/SSMPlots.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/itsdfish/SSMPlots.jl/actions/workflows/CI.yml)

This package provides plotting functionality for sequential sampling models. The code block below provides an example:

```julia
using SequentialSamplingModels
using SSMPlots
using Random
Random.seed!(187)

dist = LBA()
histogram(dist; xlims=(0,1.5))
plot!(dist; t_range=range(.301, 1.5, length=100))
```

For more information, please see the documentation link above. Additional examples can be found at [SequentialSamplingModels.jl](https://itsdfish.github.io/SequentialSamplingModels.jl/dev/).