Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/itsdfish/ssmplots.jl
- Owner: itsdfish
- License: mit
- Archived: true
- Created: 2023-07-15T10:19:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-12T15:17:28.000Z (about 1 year ago)
- Last Synced: 2024-09-29T09:00:12.471Z (about 1 month ago)
- Topics: drift-diffusion-model, evidence-accumulation-model, julia, julia-language, julialang, linear-ballistic-accumulator, sequential-sampling-models
- Language: Julia
- Homepage: https://itsdfish.github.io/SSMPlots.jl/dev/
- Size: 1.39 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/).