Skip to content

Commit

Permalink
version 1
Browse files Browse the repository at this point in the history
  • Loading branch information
donotdespair committed Dec 5, 2024
1 parent 16fe0fb commit bcfed9b
Show file tree
Hide file tree
Showing 12 changed files with 165 additions and 58 deletions.
Binary file added bsvarSIGNs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bsvars.org.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 49 additions & 22 deletions index-speaker.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<meta name="generator" content="quarto-1.3.361">

<meta name="author" content="by Tomasz Woźniak">
<title>Bayesian Structural Vector Autoregressions</title>
<title>index</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
Expand Down Expand Up @@ -324,40 +324,29 @@
<div class="reveal">
<div class="slides">

<section id="title-slide" data-background-color="#ff69b4" class="quarto-title-block center">
<h1 class="title"><span style="color: #ffd700;">Bayesian Structural Vector Autoregressions</span></h1>

<div class="quarto-title-authors">
<div class="quarto-title-author">
<div class="quarto-title-author-name">
<span style="color: #ffd700;">by Tomasz Woźniak</span>
</div>
</div>
</div>

<section id="section" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><img data-src="bsvars.org.png" class="absolute" style="top: 80px; right: 750px; width: 400px; "> <img data-src="bsvars.png" class="absolute" style="top: 80px; right: 350px; width: 400px; "> <img data-src="bsvarSIGNs.png" class="absolute" style="top: 80px; right: -50px; width: 400px; "></p>
</section>
<section id="section" class="slide level2" data-background-color="#ff69b4">
<section id="section-1" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><span class="math display">\[ \]</span></p>
<h3 style="color:#ffd700;" id="structural-vector-autoregressions">Structural Vector Autoregressions</h3>
<h3 id="structural-vector-autoregressions">Structural Vector Autoregressions</h3>
<h3 style="color:#ffd700;" id="identification-of-structural-vars">Identification of Structural VARs</h3>
<h3 style="color:#ffd700;" id="dynamic-causal-effects">Dynamic Causal Effects</h3>
<h3 style="color:#ffd700;" id="bayesian-estimation">Bayesian Estimation</h3>
<h3 style="color:#ffd700;" id="monetary-policy-analysis-using-the-bsvars-package">Monetary Policy Analysis Using the <a href="https://cran.r-project.org/package=bsvars">bsvars</a> Package</h3>
<h3 id="monetary-policy-analysis-using-the-bsvars-package">Monetary Policy Analysis Using the <a href="https://cran.r-project.org/package=bsvars">bsvars</a> Package</h3>
</section>
<section id="section-1" class="slide level2" data-background-color="#ff69b4">
<h2></h2>
<p><img data-src="bsvars.png" class="absolute" style="top: 30px; right: 275px; width: 500px; "></p>
</section>
<section id="materials" class="slide level2" data-background-color="#ff69b4">
<h2><span style="color: #ffd700;">Materials</span></h2>
<section id="materials" class="slide level2" data-background-color="#00bf63">
<h2>Materials</h2>
<p><span class="math display">\[ \]</span></p>
<h3 style="color:#ffd700;" id="lecture-slides-as-a-website">Lecture Slides <a href="https://bsvars.github.io/2024-10-be24-bsvars">as a Website</a></h3>
<h3 style="color:#ffd700;" id="r-script-for-your-own-australian-monetary-policy-analysis"><a href="https://github.com/bsvars/2024-10-be24-bsvars/blob/main/be24-bsvars.R">R script</a> for your own Australian monetary policy analysis</h3>
<h3 style="color:#ffd700;" id="github-repo-to-reproduce-the-slides-and-results">GitHub <a href="https://github.com/bsvars/2024-10-be24-bsvars">repo</a> to reproduce the slides and results</h3>
<h3 style="color:#ffd700;" id="tasks">Tasks</h3>
</section>
<section id="structural-vector-autoregressions-1" class="slide level2" data-background-color="#ff69b4">
<section id="structural-vector-autoregressions-1" class="slide level2" data-background-color="#00bf63">
<h2><span style="color: #ffd700;">Structural Vector Autoregressions</span></h2>
</section>
<section id="structural-vector-autoregressions-2" class="slide level2">
Expand Down Expand Up @@ -409,7 +398,7 @@ <h3 id="notation.">Notation.</h3>
</ul>
</div>
</section>
<section id="section-2" class="slide level2" data-background-color="#ff69b4">
<section id="section-2" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><img data-src="social.png" class="absolute" style="top: 30px; right: 200px; width: 800px; "></p>
<div class="footer footer-default">
Expand Down Expand Up @@ -630,6 +619,44 @@ <h2></h2>
]
});
</script>

<script>
// htmlwidgets need to know to resize themselves when slides are shown/hidden.
// Fire the "slideenter" event (handled by htmlwidgets.js) when the current
// slide changes (different for each slide format).
(function () {
// dispatch for htmlwidgets
function fireSlideEnter() {
const event = window.document.createEvent("Event");
event.initEvent("slideenter", true, true);
window.document.dispatchEvent(event);
}

function fireSlideChanged(previousSlide, currentSlide) {
fireSlideEnter();

// dispatch for shiny
if (window.jQuery) {
if (previousSlide) {
window.jQuery(previousSlide).trigger("hidden");
}
if (currentSlide) {
window.jQuery(currentSlide).trigger("shown");
}
}
}

// hookup for slidy
if (window.w3c_slidy) {
window.w3c_slidy.add_observer(function (slide_num) {
// slide_num starts at position 1
fireSlideChanged(null, w3c_slidy.slides[slide_num - 1]);
});
}

})();
</script>

<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
Expand Down
71 changes: 49 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<meta name="generator" content="quarto-1.3.361">

<meta name="author" content="by Tomasz Woźniak">
<title>Bayesian Structural Vector Autoregressions</title>
<title>index</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
Expand Down Expand Up @@ -324,40 +324,29 @@
<div class="reveal">
<div class="slides">

<section id="title-slide" data-background-color="#ff69b4" class="quarto-title-block center">
<h1 class="title"><span style="color: #ffd700;">Bayesian Structural Vector Autoregressions</span></h1>

<div class="quarto-title-authors">
<div class="quarto-title-author">
<div class="quarto-title-author-name">
<span style="color: #ffd700;">by Tomasz Woźniak</span>
</div>
</div>
</div>

<section id="section" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><img data-src="bsvars.org.png" class="absolute" style="top: 80px; right: 750px; width: 400px; "> <img data-src="bsvars.png" class="absolute" style="top: 80px; right: 350px; width: 400px; "> <img data-src="bsvarSIGNs.png" class="absolute" style="top: 80px; right: -50px; width: 400px; "></p>
</section>
<section id="section" class="slide level2" data-background-color="#ff69b4">
<section id="section-1" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><span class="math display">\[ \]</span></p>
<h3 style="color:#ffd700;" id="structural-vector-autoregressions">Structural Vector Autoregressions</h3>
<h3 id="structural-vector-autoregressions">Structural Vector Autoregressions</h3>
<h3 style="color:#ffd700;" id="identification-of-structural-vars">Identification of Structural VARs</h3>
<h3 style="color:#ffd700;" id="dynamic-causal-effects">Dynamic Causal Effects</h3>
<h3 style="color:#ffd700;" id="bayesian-estimation">Bayesian Estimation</h3>
<h3 style="color:#ffd700;" id="monetary-policy-analysis-using-the-bsvars-package">Monetary Policy Analysis Using the <a href="https://cran.r-project.org/package=bsvars">bsvars</a> Package</h3>
<h3 id="monetary-policy-analysis-using-the-bsvars-package">Monetary Policy Analysis Using the <a href="https://cran.r-project.org/package=bsvars">bsvars</a> Package</h3>
</section>
<section id="section-1" class="slide level2" data-background-color="#ff69b4">
<h2></h2>
<p><img data-src="bsvars.png" class="absolute" style="top: 30px; right: 275px; width: 500px; "></p>
</section>
<section id="materials" class="slide level2" data-background-color="#ff69b4">
<h2><span style="color: #ffd700;">Materials</span></h2>
<section id="materials" class="slide level2" data-background-color="#00bf63">
<h2>Materials</h2>
<p><span class="math display">\[ \]</span></p>
<h3 style="color:#ffd700;" id="lecture-slides-as-a-website">Lecture Slides <a href="https://bsvars.github.io/2024-10-be24-bsvars">as a Website</a></h3>
<h3 style="color:#ffd700;" id="r-script-for-your-own-australian-monetary-policy-analysis"><a href="https://github.com/bsvars/2024-10-be24-bsvars/blob/main/be24-bsvars.R">R script</a> for your own Australian monetary policy analysis</h3>
<h3 style="color:#ffd700;" id="github-repo-to-reproduce-the-slides-and-results">GitHub <a href="https://github.com/bsvars/2024-10-be24-bsvars">repo</a> to reproduce the slides and results</h3>
<h3 style="color:#ffd700;" id="tasks">Tasks</h3>
</section>
<section id="structural-vector-autoregressions-1" class="slide level2" data-background-color="#ff69b4">
<section id="structural-vector-autoregressions-1" class="slide level2" data-background-color="#00bf63">
<h2><span style="color: #ffd700;">Structural Vector Autoregressions</span></h2>
</section>
<section id="structural-vector-autoregressions-2" class="slide level2">
Expand Down Expand Up @@ -409,7 +398,7 @@ <h3 id="notation.">Notation.</h3>
</ul>
</div>
</section>
<section id="section-2" class="slide level2" data-background-color="#ff69b4">
<section id="section-2" class="slide level2" data-background-color="#00bf63">
<h2></h2>
<p><img data-src="social.png" class="absolute" style="top: 30px; right: 200px; width: 800px; "></p>
<div class="footer footer-default">
Expand Down Expand Up @@ -630,6 +619,44 @@ <h2></h2>
]
});
</script>

<script>
// htmlwidgets need to know to resize themselves when slides are shown/hidden.
// Fire the "slideenter" event (handled by htmlwidgets.js) when the current
// slide changes (different for each slide format).
(function () {
// dispatch for htmlwidgets
function fireSlideEnter() {
const event = window.document.createEvent("Event");
event.initEvent("slideenter", true, true);
window.document.dispatchEvent(event);
}

function fireSlideChanged(previousSlide, currentSlide) {
fireSlideEnter();

// dispatch for shiny
if (window.jQuery) {
if (previousSlide) {
window.jQuery(previousSlide).trigger("hidden");
}
if (currentSlide) {
window.jQuery(currentSlide).trigger("shown");
}
}
}

// hookup for slidy
if (window.w3c_slidy) {
window.w3c_slidy.add_observer(function (slide_num) {
// slide_num starts at position 1
fireSlideChanged(null, w3c_slidy.slides[slide_num - 1]);
});
}

})();
</script>

<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
Expand Down
39 changes: 27 additions & 12 deletions index.qmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "<span style='color: #ffd700;'>Bayesian Structural Vector Autoregressions</span>"
title: ""
author: "<span style='color: #ffd700;'>by Tomasz Woźniak</span>"
email: "[email protected]"
title-slide-attributes:
data-background-color: "#ff69b4"
data-background-color: "#00bf63"
number-sections: false
format:
revealjs:
Expand All @@ -16,31 +16,46 @@ execute:
echo: true
---

## {background-color="#ff69b4"}

```{r palette}
#| echo: false
gre = "#00bf63"
vio = "#8c52ff"
grad = grDevices::colorRampPalette(c(gre, vio))(5)
```


## {background-color="#00bf63"}

![](bsvars.org.png){.absolute top=80 right=750 width="400"}
![](bsvars.png){.absolute top=80 right=350 width="400"}
![](bsvarSIGNs.png){.absolute top=80 right=-50 width="400"}





## {background-color="#00bf63"}

$$ $$

### Structural Vector Autoregressions {style="color:#ffd700;"}
### Structural Vector Autoregressions

### Identification of Structural VARs {style="color:#ffd700;"}

### Dynamic Causal Effects {style="color:#ffd700;"}

### Bayesian Estimation {style="color:#ffd700;"}

### Monetary Policy Analysis Using the [bsvars](https://cran.r-project.org/package=bsvars) Package {style="color:#ffd700;"}


### Monetary Policy Analysis Using the [bsvars](https://cran.r-project.org/package=bsvars) Package



## {background-color="#ff69b4"}

![](bsvars.png){.absolute top=30 right=275 width="500"}



## <span style="color: #ffd700;">Materials</span> {background-color="#ff69b4"}
## Materials {background-color="#00bf63"}

$$ $$

Expand All @@ -53,7 +68,7 @@ $$ $$
### Tasks{style="color:#ffd700;"}


## <span style="color: #ffd700;">Structural Vector Autoregressions</span> {background-color="#ff69b4"}
## <span style="color: #ffd700;">Structural Vector Autoregressions</span> {background-color="#00bf63"}

## Structural Vector Autoregressions

Expand Down Expand Up @@ -109,7 +124,7 @@ uncorrelated shocks* on variables $y_t$



## {background-color="#ff69b4"}
## {background-color="#00bf63"}

![](social.png){.absolute top=30 right=200 width="800"}

Loading

0 comments on commit bcfed9b

Please sign in to comment.