Skip to content

Commit 5dacfa3

Browse files
committed
JOSS paper setup
1 parent cc9daef commit 5dacfa3

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed

.github/workflows/joss_paper.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
on: [push]
3+
4+
jobs:
5+
paper:
6+
runs-on: ubuntu-latest
7+
name: Paper Draft
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v3
11+
- name: Build draft PDF
12+
uses: openjournals/openjournals-draft-action@master
13+
with:
14+
journal: joss
15+
# This should be the path to the paper within your repo.
16+
paper-path: joss/paper.md
17+
- name: Upload
18+
uses: actions/upload-artifact@v1
19+
with:
20+
name: paper
21+
# This is the output path where Pandoc will write the compiled
22+
# PDF. Note, this should be the same directory as the input
23+
# paper.md
24+
path: joss/paper.pdf

joss/paper.bib

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@article{virtanen2020scipy,
2+
title={SciPy 1.0: fundamental algorithms for scientific computing in {P}ython},
3+
author={Virtanen, Pauli and Gommers, Ralf and Oliphant, Travis E and Haberland, Matt and Reddy, Tyler and Cournapeau, David and Burovski, Evgeni and Peterson, Pearu and Weckesser, Warren and Bright, Jonathan et al.},
4+
journal={Nature methods},
5+
volume={17},
6+
number={3},
7+
pages={261--272},
8+
year={2020},
9+
publisher={Nature Publishing Group},
10+
doi={10.1038/s41592-019-0686-2}
11+
}
12+
13+
@book{niederreiter1992,
14+
author = {Niederreiter, Harald},
15+
title = {Random Number Generation and {Q}uasi-{M}onte {C}arlo Methods},
16+
publisher = {Society for Industrial and Applied Mathematics},
17+
year = {1992},
18+
doi = {10.1137/1.9781611970081},
19+
}
20+
21+
@misc{scipy2021qmc,
22+
author = {Roy, Pamphile T. and Balandat, Maximilian and Owen, Art B. and Haberland, Matt},
23+
title = {ENH: add stats.qmc module with quasi {M}onte {C}arlo functionality},
24+
year = {2021},
25+
publisher = {GitHub},
26+
journal = {GitHub pull request},
27+
url = {https://github.com/scipy/scipy/pull/10844}
28+
}
29+
30+
@misc{salib2022qmc,
31+
author = {Roy, Pamphile T. and Iwanaga, Takuya},
32+
title = {Add {S}obol' sampler from SciPy},
33+
year = {2022},
34+
publisher = {GitHub},
35+
journal = {GitHub pull request},
36+
url = {https://github.com/SALib/SALib/pull/519}
37+
}

joss/paper.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: 'Simulation Decomposition in Python'
3+
tags:
4+
- Python
5+
- SimDec
6+
- statistics
7+
- Sensitivity Analysis
8+
- Visualization
9+
authors:
10+
- name: Pamphile T. Roy
11+
affiliation: 1
12+
corresponding: true
13+
orcid: 0000-0001-9816-1416
14+
- name: Mariia Kozlova
15+
affiliation: 2
16+
orcid: 0000-0002-6952-7682
17+
affiliations:
18+
- name: Consulting Manao GmbH, Vienna, Austria
19+
index: 1
20+
- name: LUT Business School, LUT University, Lappeenranta, Finland
21+
index: 2
22+
date: 1 November 2023
23+
bibliography: paper.bib
24+
25+
---
26+
27+
# Summary
28+
29+
...
30+
31+
# Statement of need
32+
33+
Some citations. SALib [@salib2022qmc].
34+
35+
# Acknowledgements
36+
37+
The authors thank ...
38+
39+
# References

0 commit comments

Comments
 (0)