Skip to content

Commit b103d8b

Browse files
authored
Merge pull request #50 from Jacks0nJ/Adding-new-basic-guides
Added new user guides
2 parents 4e21793 + ec8394f commit b103d8b

14 files changed

+17797
-1
lines changed

.github/workflows/draft-pdf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# This should be the path to the paper within your repo.
1515
paper-path: ./paper/paper.md
1616
- name: Upload
17-
uses: actions/upload-artifact@v1
17+
uses: actions/upload-artifact@v3
1818
with:
1919
name: paper
2020
# This is the output path where Pandoc will write the compiled

User guides/Advanced/Gaussian_bump/Gaussian bump potential 1- background plots and power spectrum.ipynb

+1,083
Large diffs are not rendered by default.

User guides/Advanced/Gaussian_bump/Gaussian bump potential 2 - noise modelling.ipynb

+1,445
Large diffs are not rendered by default.

User guides/Advanced/Gaussian_bump/Gaussian bump potential 4 - importance sampling.ipynb

+2,295
Large diffs are not rendered by default.

User guides/Advanced/Gaussian_bump/Gauusian bump potential 3 - direct simulations.ipynb

+4,232
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
In this folder we apply importance sampling to the [Gaussian bump model](https://arxiv.org/abs/1911.00057).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# flake8: noqa
2+
3+
from cycler import cycler
4+
# box style
5+
paper_style = {
6+
# Colour cycle
7+
'axes.prop_cycle': cycler(color=['#377eb8', '#ff7f00', '#984ea3',
8+
'#4daf4a', '#a65628', '#f781bf',
9+
'#999999', '#e41a1c', '#dede00']),
10+
11+
# Line styles
12+
'lines.linewidth': 1.3,
13+
'lines.antialiased': True,
14+
15+
# Error bars
16+
'errorbar.capsize': 3, # length of end cap on error bars in pixels
17+
18+
# Font
19+
'font.size': 18.0,
20+
21+
# Axes
22+
'axes.linewidth': 1.5,
23+
'axes.titlesize': 'x-large',
24+
'axes.labelsize': 'large',
25+
'axes.spines.top': True,
26+
'axes.spines.right': True,
27+
28+
# Ticks
29+
'xtick.major.size': 6,
30+
'xtick.minor.size': 4,
31+
'xtick.major.width': 1.5,
32+
'xtick.minor.width': 1.5,
33+
'xtick.major.pad': 6,
34+
'xtick.minor.pad': 6,
35+
'xtick.labelsize': 'medium',
36+
'xtick.direction': 'in',
37+
'xtick.top': False,
38+
39+
'ytick.major.size': 6,
40+
'ytick.minor.size': 4,
41+
'ytick.major.width': 1.5,
42+
'ytick.minor.width': 1.5,
43+
'ytick.major.pad': 6,
44+
'ytick.minor.pad': 6,
45+
'ytick.labelsize': 'medium',
46+
'ytick.direction': 'in',
47+
'ytick.right': False,
48+
49+
# Legend
50+
'legend.fancybox': True,
51+
'legend.fontsize': 'large',
52+
'legend.scatterpoints': 5,
53+
'legend.loc': 'best',
54+
55+
# Figure
56+
'figure.figsize': [8, 5.2],
57+
'figure.titlesize': 'large',
58+
59+
# Images
60+
'image.cmap': 'magma',
61+
'image.origin': 'lower',
62+
63+
# Saving
64+
'savefig.bbox': 'tight',
65+
'savefig.format': 'png',
66+
}

0 commit comments

Comments
 (0)