19 |
20 |
21 |
22 | {% if site.logo %}
23 |
24 | {% endif %}
25 |
26 | {{ site.description | default: site.github.project_tagline }}
27 |
28 | {% if site.github.is_project_page %}
29 | View the Project on GitHub {{ site.github.repository_nwo }}
30 | {% endif %}
31 |
32 | {% if site.github.is_user_page %}
33 | View My GitHub Profile
34 | {% endif %}
35 |
36 | {% if site.show_downloads %}
37 |
42 | {% endif %}
43 |
44 |
45 |
46 | {{ content }}
47 |
48 |
49 |
55 |
56 |
57 |
58 |
59 |
60 |
--------------------------------------------------------------------------------
/assets/css/style.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 | @import "{{ site.theme }}";
5 |
6 | body {
7 | background-color: #fff;
8 | padding:30px;/* Top padding? */
9 | font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
10 | color:#727272;
11 | font-weight:400;
12 | }
13 |
14 | section {
15 | width:550px;
16 | float:right;
17 | padding-left:10px;
18 | padding-bottom:50px;
19 | }
20 |
21 | ul.downloads {
22 | list-style:none;
23 | height:625px; /* This line makes the green container larger. ~60 px adds a new line */
24 | background: #f4f4f4;
25 | border-radius:10px;
26 | width:270px; /* This line makes the green container wider to the right */
27 | }
28 |
29 | .downloads li {
30 | width:90px;
31 | float:left;
32 | border-right:1px;
33 | height:40px;
34 | }
35 |
36 | .downloads a {
37 | line-height:1;
38 | font-size:13px;
39 | color:#384c33;
40 | display:block;
41 | text-align:center;
42 | }
43 |
--------------------------------------------------------------------------------
/img/art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Gabriel-p/pythonMCMC/9a34642b6c75501befe060206f16cb796c222df4/img/art.png
--------------------------------------------------------------------------------
/img/docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Gabriel-p/pythonMCMC/9a34642b6c75501befe060206f16cb796c222df4/img/docs.png
--------------------------------------------------------------------------------
/img/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Gabriel-p/pythonMCMC/9a34642b6c75501befe060206f16cb796c222df4/img/github.png
--------------------------------------------------------------------------------
/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | **A list of Python-based MCMC & ABC packages**.
6 | Also here's a nice list
7 | of [MCMC algorithms](https://m-clark.github.io/docs/ld_mcmc/).
8 |
9 |
10 | ## ABCer
11 |
12 | > A general ABC framework to accommondate any type of model for parameter
13 | inference.
14 |
15 |