Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

itsdfish/SSMPlots.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

SSMPlots

CI

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

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.