Skip to content

Commit

Permalink
Update subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
jvivian committed Mar 10, 2024
1 parent 98f636e commit 2157eb5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
11 changes: 3 additions & 8 deletions docs/posts/dr-dfm-covid/presentation-post.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,7 @@ <h2 id="toc-title">On this page</h2>
<li><a href="#visualizing-the-model" id="toc-visualizing-the-model" class="nav-link" data-scroll-target="#visualizing-the-model">Visualizing the Model</a></li>
<li><a href="#latent-factors-and-observed-variables" id="toc-latent-factors-and-observed-variables" class="nav-link" data-scroll-target="#latent-factors-and-observed-variables">Latent Factors and Observed Variables</a></li>
<li><a href="#extending-the-model-with-time-dynamics" id="toc-extending-the-model-with-time-dynamics" class="nav-link" data-scroll-target="#extending-the-model-with-time-dynamics">Extending the Model with Time Dynamics</a></li>
<li><a href="#interpreting-transition-matrices" id="toc-interpreting-transition-matrices" class="nav-link" data-scroll-target="#interpreting-transition-matrices">Interpreting Transition Matrices</a>
<ul class="collapse">
<li><a href="#examining-the-second-transition-matrix" id="toc-examining-the-second-transition-matrix" class="nav-link" data-scroll-target="#examining-the-second-transition-matrix">Examining the second transition matrix</a></li>
</ul></li>
<li><a href="#interpreting-transition-matrices" id="toc-interpreting-transition-matrices" class="nav-link" data-scroll-target="#interpreting-transition-matrices">Interpreting Transition Matrices</a></li>
<li><a href="#factor-constraints-enhancing-model-interpretability" id="toc-factor-constraints-enhancing-model-interpretability" class="nav-link" data-scroll-target="#factor-constraints-enhancing-model-interpretability">Factor Constraints: Enhancing Model Interpretability</a></li>
</ul></li>
<li><a href="#our-python-package-modeling-and-analysis" id="toc-our-python-package-modeling-and-analysis" class="nav-link" data-scroll-target="#our-python-package-modeling-and-analysis">Our Python Package: Modeling and Analysis</a>
Expand Down Expand Up @@ -267,26 +264,24 @@ <h2 class="anchored" data-anchor-id="extending-the-model-with-time-dynamics">Ext
</section>
<section id="interpreting-transition-matrices" class="level2">
<h2 class="anchored" data-anchor-id="interpreting-transition-matrices">Interpreting Transition Matrices</h2>
<p>Examining the first transition matrix</p>
<div class="cell" data-execution_count="2">
<div class="cell-output cell-output-display">
<p><img src="index_files/figure-html/cell-3-output-1.png" width="750" height="373"></p>
</div>
</div>
<p><strong>First Transition Matrix</strong></p>
<ul>
<li>The diagonal elements (0.8 and 0.7) are relatively high, indicating a strong persistence of each latent factor over time.</li>
<li>The off-diagonal elements (0.2 and 0.3) suggest moderate influence of one latent factor on the other, allowing for some interaction between the two factors.</li>
<li>Summary: latent factors have a tendency to persist, with some interdependence.</li>
</ul>
<section id="examining-the-second-transition-matrix" class="level3">
<h3 class="anchored" data-anchor-id="examining-the-second-transition-matrix">Examining the second transition matrix</h3>
<p><strong>Second Transition Matrix</strong></p>
<ul>
<li>The diagonal elements (0.5 and 0.4) are lower compared to Transition Matrix 1, suggesting less persistence of each latent factor over time.</li>
<li>The off-diagonal elements (0.5 and 0.6) indicate a relatively stronger influence of one latent factor on the other compared to Transition Matrix 1.</li>
<li>Summary: latent factors are less likely to persist and may be influenced more by each other, allowing for a more dynamic and responsive behavior.</li>
</ul>
</section>
</section>
<section id="factor-constraints-enhancing-model-interpretability" class="level2">
<h2 class="anchored" data-anchor-id="factor-constraints-enhancing-model-interpretability">Factor Constraints: Enhancing Model Interpretability</h2>
<p>By applying constraints to the model parameters, we can improve interpretability and reduce complexity while incorporating prior domain knowledge about variable relationships.</p>
Expand Down
7 changes: 4 additions & 3 deletions posts/dr-dfm-covid/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ $\eta_t$: Innovation term

## Interpreting Transition Matrices

Examining the first transition matrix

```{python}
#| echo: false
import numpy as np
Expand Down Expand Up @@ -170,12 +168,15 @@ plt.tight_layout()
plt.show()
```

**First Transition Matrix**

- The diagonal elements (0.8 and 0.7) are relatively high, indicating a strong persistence of each latent factor over time.
- The off-diagonal elements (0.2 and 0.3) suggest moderate influence of one latent factor on the other, allowing for some interaction between the two factors.
- Summary: latent factors have a tendency to persist, with some interdependence.


### Examining the second transition matrix
**Second Transition Matrix**

- The diagonal elements (0.5 and 0.4) are lower compared to Transition Matrix 1, suggesting less persistence of each latent factor over time.
- The off-diagonal elements (0.5 and 0.6) indicate a relatively stronger influence of one latent factor on the other compared to Transition Matrix 1.
- Summary: latent factors are less likely to persist and may be influenced more by each other, allowing for a more dynamic and responsive behavior.
Expand Down

0 comments on commit 2157eb5

Please sign in to comment.