Skip to content

Commit db1b093

Browse files
committed
Merge branch 'master' of github.com:itsdfish/SequentialSamplingModels.jl
2 parents 547121f + 70f6fb1 commit db1b093

File tree

2 files changed

+45
-3
lines changed

2 files changed

+45
-3
lines changed

README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![](docs/logo/logo.png)](https://itsdfish.github.io/SequentialSamplingModels.jl/dev/)
22

3-
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://itsdfish.github.io/SequentialSamplingModels.jl/dev/) [![CI](https://github.com/itsdfish/SequentialSamplingModels.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/itsdfish/SequentialSamplingModels.jl/actions/workflows/CI.yml) [![CodeCov][codecov-img]][codecov-url]
3+
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://itsdfish.github.io/SequentialSamplingModels.jl/dev/) [![CI](https://github.com/itsdfish/SequentialSamplingModels.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/itsdfish/SequentialSamplingModels.jl/actions/workflows/CI.yml) [![CodeCov][codecov-img]][codecov-url] [![DOI](https://proceedings.juliacon.org/papers/10.21105/jcon.00186/status.svg)](https://doi.org/10.21105/jcon.00186)
44

55
[codecov-img]: https://codecov.io/github/itsdfish/SequentialSamplingModels.jl/badge.svg?branch=master
66
[codecov-url]: https://codecov.io/github/itsdfish/SequentialSamplingModels.jl?branch=master
@@ -80,4 +80,25 @@ using SequentialSamplingModels
8080
dist = LBA(; ν=[2.75,1.75], A=0.8, k=0.5, τ=0.25)
8181
# Sample 1000 random data points from this distribution
8282
choice, rt = rand(dist, 1000)
83-
```
83+
```
84+
85+
## Citation
86+
87+
If you use SequentialSamplingModels.jl in your research, please cite the following paper:
88+
89+
Fernandez, K., Makowski, D., & Fisher, C. (2025). *SequentialSamplingModels.jl: Simulating and evaluating cognitive models of response times in Julia*. *Proceedings of the JuliaCon Conferences, 7*(78), 186. [https://doi.org/10.21105/jcon.00186](https://doi.org/10.21105/jcon.00186)
90+
91+
```bibtex
92+
@article{fisher2025sequentialsamplingmodels,
93+
title = {SequentialSamplingModels.jl: Simulating and Evaluating Cognitive Models of Response Times in Julia},
94+
author = {Fernandez, Kiant{\'e} and Makowski, Dominique and Fisher, Christopher},
95+
journal = {Proceedings of the JuliaCon Conferences},
96+
year = {2025},
97+
volume = {7},
98+
number = {78},
99+
pages = {186},
100+
doi = {10.21105/jcon.00186},
101+
url = {https://doi.org/10.21105/jcon.00186},
102+
publisher = {The Open Journal}
103+
}
104+
```

docs/src/index.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,28 @@ plot!(dist; t_range=range(.3,2.5, length=100), xlims=(0, 2.5))
7272
```
7373
# Contributing
7474

75-
If you are interested in contributing, please review the [developer guidelines](developer_guide.md) before beginning.
75+
If you are interested in contributing, please review the [developer guidelines](developer_guide.md) before beginning.
76+
77+
# Citation
78+
79+
If you use SequentialSamplingModels.jl in your research, please cite the following paper:
80+
81+
Fernandez, K., Makowski, D., & Fisher, C. (2025). *SequentialSamplingModels.jl: Simulating and evaluating cognitive models of response times in Julia*. *Proceedings of the JuliaCon Conferences, 7*(78), 186. [https://doi.org/10.21105/jcon.00186](https://doi.org/10.21105/jcon.00186)
82+
83+
```bibtex
84+
@article{fisher2025sequentialsamplingmodels,
85+
title = {SequentialSamplingModels.jl: Simulating and Evaluating Cognitive Models of Response Times in Julia},
86+
author = {Fernandez, Kiant{\'e} and Makowski, Dominique and Fisher, Christopher},
87+
journal = {Proceedings of the JuliaCon Conferences},
88+
year = {2025},
89+
volume = {7},
90+
number = {78},
91+
pages = {186},
92+
doi = {10.21105/jcon.00186},
93+
url = {https://doi.org/10.21105/jcon.00186},
94+
publisher = {The Open Journal}
95+
}
96+
```
7697

7798
# References
7899
Evans, N. J. & Wagenmakers, E.-J. Evidence accumulation models: Current limitations and future directions. Quantitative Methods for Psychololgy 16, 73–90 (2020).

0 commit comments

Comments
 (0)