Skip to content

Commit

Permalink
added link to RegressionAndOtherStories.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
avehtari committed Mar 31, 2022
1 parent 2ee1312 commit 9813028
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
6 changes: 6 additions & 0 deletions examples.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -461,3 +461,9 @@ examples to Python using bambi (BAyesian Model-Building Interface)
which has similar formula syntax as rstanarm and brms.

- [Bambi resources](https://github.com/bambinos/Bambi_resources)

## Julia code

Rob J. Goedman is porting ROS examples to Julia.

- [RegressionAndOtherStories.jl](https://github.com/RegressionAndOtherStoriesJulia/RegressionAndOtherStories.jl)
15 changes: 13 additions & 2 deletions examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@




<style type = "text/css">
.main-container {
max-width: 940px;
Expand All @@ -84,6 +85,9 @@
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
Expand Down Expand Up @@ -308,7 +312,7 @@
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
Expand Down Expand Up @@ -343,7 +347,7 @@

<h1 class="title toc-ignore">Regression and Other Stories - Examples</h1>
<h4 class="author">Andrew Gelman, Jennifer Hill, Aki Vehtari</h4>
<h4 class="date">Page updated: 2022-02-23</h4>
<h4 class="date">Page updated: 2022-02-24</h4>

</div>

Expand Down Expand Up @@ -1146,6 +1150,13 @@ <h2>Python code</h2>
<li><a href="https://github.com/bambinos/Bambi_resources">Bambi resources</a></li>
</ul>
</div>
<div id="julia-code" class="section level2">
<h2>Julia code</h2>
<p>Rob J. Goedman is porting ROS examples to Julia.</p>
<ul>
<li><a href="https://github.com/RegressionAndOtherStoriesJulia/RegressionAndOtherStories.jl">RegressionAndOtherStories.jl</a></li>
</ul>
</div>



Expand Down
2 changes: 2 additions & 0 deletions site_libs/navigation-1.1/codefolding.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ window.initializeCodeFolding = function(show) {
showCodeButton.append(showCodeText);
showCodeButton
.attr('data-toggle', 'collapse')
.attr('data-bs-toggle', 'collapse') // BS5
.attr('data-target', '#' + id)
.attr('data-bs-target', '#' + id) // BS5
.attr('aria-expanded', showThis)
.attr('aria-controls', id);

Expand Down

0 comments on commit 9813028

Please sign in to comment.