<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Shiny on Stats and R</title>
    <link>https://statsandr.com/tags/shiny/</link>
    <description>Recent content in Shiny on Stats and R</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Tue, 16 Dec 2025 00:00:00 +0000</lastBuildDate>
    
	<atom:link href="https://statsandr.com/tags/shiny/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>AssociationExplorer: A user-friendly shiny application for exploring associations and visual patterns</title>
      <link>https://statsandr.com/blog/associationexplorer-a-user-friendly-shiny-application-for-exploring-associations-and-visual-patterns/</link>
      <pubDate>Tue, 16 Dec 2025 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/associationexplorer-a-user-friendly-shiny-application-for-exploring-associations-and-visual-patterns/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#why-associationexplorer&#34; id=&#34;toc-why-associationexplorer&#34;&gt;Why AssociationExplorer?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#what-does-the-app-do&#34; id=&#34;toc-what-does-the-app-do&#34;&gt;What does the app do?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#a-paper-published-in-softwarex&#34; id=&#34;toc-a-paper-published-in-softwarex&#34;&gt;A paper published in &lt;em&gt;SoftwareX&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#the-r-package-is-also-on-cran&#34; id=&#34;toc-the-r-package-is-also-on-cran&#34;&gt;The R package is also on CRAN&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#who-is-it-for-and-how-can-it-be-used&#34; id=&#34;toc-who-is-it-for-and-how-can-it-be-used&#34;&gt;Who is it for, and how can it be used?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#acknowledgements&#34; id=&#34;toc-acknowledgements&#34;&gt;Acknowledgements&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#useful-links&#34; id=&#34;toc-useful-links&#34;&gt;Useful links&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#references&#34; id=&#34;toc-references&#34;&gt;References&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;p&gt;&lt;img src=&#34;images/associationexplorer-a-user-friendly-shiny-application-for-exploring-associations-and-visual-patterns.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;I am pleased to announce the publication of our paper “AssociationExplorer: A user-friendly Shiny application for exploring associations and visual patterns” in the journal &lt;em&gt;SoftwareX&lt;/em&gt;, together with the official release of the AssociationExplorer2 R package on CRAN.&lt;/p&gt;
&lt;p&gt;Both the paper and the software are part of an open-science effort aimed at making exploratory data analysis more accessible to non-technical users.&lt;/p&gt;
&lt;div id=&#34;why-associationexplorer&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Why AssociationExplorer?&lt;/h2&gt;
&lt;p&gt;Exploring multivariate datasets is now central in social sciences, data journalism, and education. However, identifying and interpreting associations between variables often requires programming skills and a solid background in statistics, which can represent a substantial barrier for many users.&lt;/p&gt;
&lt;p&gt;AssociationExplorer was designed to lower this barrier by providing an interactive, visual, and statistically grounded tool for exploring associations between quantitative and qualitative variables, without requiring users to write any code.&lt;/p&gt;
&lt;p&gt;The application is primarily intended for:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;journalists and data journalism practitioners,&lt;/li&gt;
&lt;li&gt;teachers and students,&lt;/li&gt;
&lt;li&gt;researchers in the exploratory phase of an analysis,&lt;/li&gt;
&lt;li&gt;engaged citizens interested in understanding public or survey data.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;what-does-the-app-do&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;What does the app do?&lt;/h2&gt;
&lt;p&gt;AssociationExplorer follows a simple and guided workflow:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Import data (CSV or Excel files)&lt;/li&gt;
&lt;li&gt;Interactively select variables of interest&lt;/li&gt;
&lt;li&gt;Automatically compute association measures adapted to variable types:
&lt;ul&gt;
&lt;li&gt;Pearson’s &lt;span class=&#34;math inline&#34;&gt;\(r\)&lt;/span&gt; correlation for numeric–numeric pairs,&lt;/li&gt;
&lt;li&gt;Cramer’s V for categorical–categorical pairs,&lt;/li&gt;
&lt;li&gt;the correlation ratio &lt;span class=&#34;math inline&#34;&gt;\(\eta\)&lt;/span&gt; for mixed numeric–categorical pairs&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Filter associations using user-defined thresholds&lt;/li&gt;
&lt;li&gt;Visualize results through:
&lt;ul&gt;
&lt;li&gt;an interactive correlation network,&lt;/li&gt;
&lt;li&gt;contextual bivariate visualizations (scatter plots, mean plots, and colored contingency tables)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This workflow is designed to support transparent, reactive, and interpretable exploratory data analysis.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;a-paper-published-in-softwarex&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;A paper published in &lt;em&gt;SoftwareX&lt;/em&gt;&lt;/h2&gt;
&lt;p&gt;The &lt;em&gt;SoftwareX&lt;/em&gt; paper provides a detailed description of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the motivation and intended audience of the tool,&lt;/li&gt;
&lt;li&gt;the software architecture,&lt;/li&gt;
&lt;li&gt;the methodological choices underlying the association measures,&lt;/li&gt;
&lt;li&gt;an illustrative case study based on the European Social Survey,&lt;/li&gt;
&lt;li&gt;and perspectives for future development.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Link to the paper: &lt;a href=&#34;https://doi.org/10.1016/j.softx.2025.102483&#34; class=&#34;uri&#34;&gt;https://doi.org/10.1016/j.softx.2025.102483&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In line with the journal’s standards, the code, documentation, and example data are fully open and reproducible.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;the-r-package-is-also-on-cran&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;The R package is also on CRAN&lt;/h2&gt;
&lt;p&gt;Alongside the paper, an R package is also available on CRAN, making installation and use straightforward:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;install.packages(&amp;quot;AssociationExplorer2&amp;quot;)
library(AssociationExplorer2)
run_associationexplorer()&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The CRAN release ensures:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;standardized installation,&lt;/li&gt;
&lt;li&gt;better integration with existing R workflows,&lt;/li&gt;
&lt;li&gt;clearer versioning and dependency management.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;who-is-it-for-and-how-can-it-be-used&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Who is it for, and how can it be used?&lt;/h2&gt;
&lt;p&gt;AssociationExplorer is particularly useful for:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;exploratory analysis prior to formal modeling,&lt;/li&gt;
&lt;li&gt;teaching concepts related to association and dependence,&lt;/li&gt;
&lt;li&gt;data storytelling and journalistic exploration,&lt;/li&gt;
&lt;li&gt;the analysis of survey data and public datasets.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The goal is not to replace confirmatory statistical analyses, but to provide a robust tool for understanding the structure of the data before modeling.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;acknowledgements&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Acknowledgements&lt;/h2&gt;
&lt;p&gt;This work was carried out in collaboration with Cédric Heuchenne, Arnaud Claes, and Antonin Descampe, whom I warmly thank.&lt;/p&gt;
&lt;p&gt;The project is supported by the Walloon Region and SPW Recherche within the ODALON research project.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;useful-links&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Useful links&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;📄 &lt;em&gt;SoftwareX&lt;/em&gt; paper: &lt;a href=&#34;https://doi.org/10.1016/j.softx.2025.102483&#34; class=&#34;uri&#34;&gt;https://doi.org/10.1016/j.softx.2025.102483&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;📦 CRAN package: &lt;a href=&#34;https://CRAN.R-project.org/package=AssociationExplorer2&#34; class=&#34;uri&#34;&gt;https://CRAN.R-project.org/package=AssociationExplorer2&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;💻 GitHub repository:
&lt;ul&gt;
&lt;li&gt;of the &lt;a href=&#34;https://github.com/AntoineSoetewey/AssociationExplorer&#34;&gt;paper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;of the &lt;a href=&#34;https://github.com/AntoineSoetewey/AssociationExplorer2&#34;&gt;R package&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As always, feedback, bug reports, and suggestions are very welcome.&lt;/p&gt;
&lt;p&gt;Thanks for reading!&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;References&lt;/h2&gt;
&lt;p&gt;Soetewey, A., Heuchenne, C., Claes, A. and Descampe, A. (2026). AssociationExplorer: A user-friendly shiny application for exploring associations and visual patterns. &lt;em&gt;SoftwareX, 33&lt;/em&gt;(102483). &lt;a href=&#34;https://doi.org/10.1016/j.softx.2025.102483&#34; class=&#34;uri&#34;&gt;https://doi.org/10.1016/j.softx.2025.102483&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Soetewey, A., Heuchenne, C., Claes, A. and Descampe, A. (2025). AssociationExplorer2: A User-Friendly ‘shiny’ Application for Exploring Associations and Visual Patterns. R package version 0.1.4, &lt;a href=&#34;https://github.com/AntoineSoetewey/AssociationExplorer2&#34; class=&#34;uri&#34;&gt;https://github.com/AntoineSoetewey/AssociationExplorer2&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Running pace calculator in R Shiny</title>
      <link>https://statsandr.com/blog/running-pace-calculator/</link>
      <pubDate>Mon, 15 Mar 2021 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/running-pace-calculator/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#introduction&#34; id=&#34;toc-introduction&#34;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#running-pace-calculator&#34; id=&#34;toc-running-pace-calculator&#34;&gt;Running pace calculator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#how-to-use-it&#34; id=&#34;toc-how-to-use-it&#34;&gt;How to use it?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#code&#34; id=&#34;toc-code&#34;&gt;Code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#conclusion&#34; id=&#34;toc-conclusion&#34;&gt;Conclusion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;p&gt;&lt;img src=&#34;images/running-pace-calculator.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;div id=&#34;introduction&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Introduction&lt;/h1&gt;
&lt;p&gt;If you are a runner yourself, you are certainly aware of how important preparation is before a race. For the preparation of my first &lt;a href=&#34;https://www.strava.com/activities/1928117850/overview&#34; target=&#34;_blank&#34;&gt;marathon&lt;/a&gt;, I used to rely on a training plan.&lt;/p&gt;
&lt;p&gt;This running plan was great, but an important information was missing: the running pace. Most of the time, the distance and the time was given, but I needed to figure out the pace myself.&lt;/p&gt;
&lt;p&gt;Although the computation is fairly easy, I felt like I was missing a quick way to compute my running pace based on the distance and expected time given by the training plan.&lt;/p&gt;
&lt;p&gt;So I started to look for a solution online, but I was never completely satisfied. Some running pace calculators were too detailed (showing way too much information) others were too basic (showing not enough information).&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;running-pace-calculator&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Running pace calculator&lt;/h1&gt;
&lt;p&gt;I thus decided to create one myself so I could really choose what information would be displayed, and how it would be displayed.&lt;/p&gt;
&lt;p&gt;For the runners among you, here is a link to the application:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/running-pace-calculator/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Running pace calculator&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you follow the blog, you know how much I like R Shiny, so you probably guessed that the calculator is built with this technology.&lt;/p&gt;
&lt;p&gt;Note that this running pace calculator is inspired by several calculators I found online. I kept it quite basic so that it goes straight to the point, but most importantly so that it would fit to my needs (which may be different than yours).&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-use-it&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use it?&lt;/h1&gt;
&lt;p&gt;I try to keep all my &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;Shiny apps&lt;/a&gt; easy to use for everyone. However, here is how to use it in case it is not intuitive enough:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Access the app via this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/running-pace-calculator/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Choose the units (kilometers or miles)&lt;/li&gt;
&lt;li&gt;Enter the distance you plan to run&lt;/li&gt;
&lt;li&gt;Enter the time for which you would like to run that distance&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;On the right panel (or bottom if you use the app on mobile) you will see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The pace you will need to respect in order to run the distance within the time you specified&lt;/li&gt;
&lt;li&gt;Depending on the units you selected, your pace will be displayed in minutes/km or minutes/miles, and kilometers/hour or miles/hour&lt;/li&gt;
&lt;li&gt;The table below displays the splits—the time at each kilometer or mile&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Update of January 11, 2023:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Until now, only the conversion from distance and time to pace was possible. For completeness, I have added to following conversions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pace and time to distance: enter the pace and the time you plan to run to find the expected running distance.&lt;/li&gt;
&lt;li&gt;Pace and distance to time: enter the pace and the distance you plan to run to find the expected running time.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;As for all my &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;Shiny apps&lt;/a&gt;, the code is available on &lt;a href=&#34;https://github.com/AntoineSoetewey/running-pace-calculator&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;. Feel free to open an issue if you find a bug or if you have a suggestion. And if you are proficient in R Shiny, do not hesitate to propose a pull request with your suggestions implemented.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/running-pace-calculator/&#34; target=&#34;_blank&#34;&gt;running pace calculator&lt;/a&gt; will be useful if you are a runner, or if you plan to start running.&lt;/p&gt;
&lt;p&gt;As always, if you have a question about the app, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Mortgage calculator in R Shiny</title>
      <link>https://statsandr.com/blog/mortgage-calculator-r-shiny/</link>
      <pubDate>Fri, 14 Aug 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/mortgage-calculator-r-shiny/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#introduction&#34; id=&#34;toc-introduction&#34;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#mortgage-calculator&#34; id=&#34;toc-mortgage-calculator&#34;&gt;Mortgage calculator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#how-to-use-the-mortgage-calculator&#34; id=&#34;toc-how-to-use-the-mortgage-calculator&#34;&gt;How to use the mortgage calculator?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#code-of-the-app&#34; id=&#34;toc-code-of-the-app&#34;&gt;Code of the app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#conclusion&#34; id=&#34;toc-conclusion&#34;&gt;Conclusion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-08-14-mortgage-calculator-in-r-shiny_files/mortgage-calculator-r-shiny-app.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;div id=&#34;introduction&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Introduction&lt;/h1&gt;
&lt;p&gt;I recently moved out and bought my first apartment. Of course, I could not pay it entirely with my own savings, so I had to borrow money from the bank. I visited a couple of banks operating in my country and asked for a mortgage.&lt;/p&gt;
&lt;p&gt;If you already bought your house or apartment in the past, you know how it goes: the bank analyzes your financial and personal situation and make an offer based on your propensity to repay the bank. You then either accept the offer if you are satisfied with the rate and conditions, or visit another bank if you believe you could receive a better offer. Mortgages and loans are more complicated than that of course, but let’s keep it simple here.&lt;/p&gt;
&lt;p&gt;As I kind of like to control and keep a close eye on my &lt;a href=&#34;https://statsandr.com/blog/practical-guide-on-optimal-asset-allocation/&#34;&gt;personal finances&lt;/a&gt; (sometimes a bit too close I must admit), I knew precisely how much I could spend for my monthly mortgage repayment while still being able to cover my living expenses. However, I had no clue how much I could borrow in total for my new apartment given these housing repayments.&lt;/p&gt;
&lt;p&gt;I knew I was not the first person in this case, so I looked online if I could find a R script which would answer my question (and potentially also give me the total cost of the housing loan, including the loan amount and the accumulated interests). I finally found a R script created a while ago by Prof. Thomas Girke.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;mortgage-calculator&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Mortgage calculator&lt;/h1&gt;
&lt;p&gt;The function in the script was functional and solved my main issue, but I wanted to be able to play more easily with the different settings such as the amount, the duration and the interest rate of the loan.&lt;/p&gt;
&lt;p&gt;For this reason, I created a &lt;strong&gt;R Shiny app&lt;/strong&gt; which is &lt;strong&gt;available here:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/mortgage-calculator/&#34; target=&#34;_blank&#34;&gt;Mortgage calculator&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&#34;float&#34;&gt;
&lt;img src=&#34;https://statsandr.com/blog/2020-08-14-mortgage-calculator-in-r-shiny_files/mortgage-calculator-r-shiny.png&#34; style=&#34;width:100.0%&#34; alt=&#34;Mortgage calculator in R Shiny&#34; /&gt;
&lt;div class=&#34;figcaption&#34;&gt;Mortgage calculator in R Shiny&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In the meantime, I received an Excel file from a friend working in a Belgian bank which does precisely the same task. I am not an actuary nor an expert in mortgage loan, so with his file I was able to cross check the results and edit the code accordingly.&lt;/p&gt;
&lt;p&gt;The app greatly helped me to know the maximum amount I could borrow from the bank by playing with the three main settings of a mortgage, so it gave me a precise price limit when looking for apartments online.&lt;/p&gt;
&lt;p&gt;Note that the app can of course be used for any loan, not only for mortgage.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-use-the-mortgage-calculator&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use the mortgage calculator?&lt;/h1&gt;
&lt;p&gt;First, you can find the mortgage calculator &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/mortgage-calculator/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I try to keep all my &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;Shiny apps&lt;/a&gt; easy to use for everyone. However, here is how to use it in case it is not intuitive enough:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Enter the amount of the loan (i.e., the amount you would like to borrow, do not include downpayment)&lt;/li&gt;
&lt;li&gt;Enter the annual interest rate in %&lt;/li&gt;
&lt;li&gt;Enter the duration of the loan in years&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;On the right panel (or bottom if you use the app on mobile) you will see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a summary repeating the settings you entered,&lt;/li&gt;
&lt;li&gt;the total cost of the loan (principal and interests included), and more importantly&lt;/li&gt;
&lt;li&gt;the amount of the monthly payments&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A plot representing the percentage attributed to the repayment of the interests and the capital is also displayed. You see that (especially in the first years of the loan), the higher the interest rate and the duration of the loan, the higher the percentage of the monthly repayments is attributed to the repayments of the interests.&lt;/p&gt;
&lt;p&gt;Finally, the amortization table showing the remaining balance month by month is displayed after the summary and the plot. You can copy, export (in PDF, CSV or Excel) or print this amortization table for further use.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code-of-the-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code of the app&lt;/h1&gt;
&lt;p&gt;Here is the entire code (or see the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/mortgage-calculator&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;) in case you would like to enhance it (feel free to send me your app if you happen to improve it!).&lt;/p&gt;
&lt;script src=&#34;https://gist.github.com/AntoineSoetewey/c4cf29983f7b0695e492d53795355c4c.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/mortgage-calculator/&#34; target=&#34;_blank&#34;&gt;mortgage calculator&lt;/a&gt; helped you to play with the different settings of a mortgage, and who knows, helped you to decide which house or apartment to buy.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Disclosure: Note that this application does not include investment advice or recommendations, nor a financial analysis. This application is intended for information only and you invest at your own risks. I cannot be held liable for any decision made based on the information contained in this application, nor for its use by third parties.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>How to publish a Shiny app? An example with shinyapps.io</title>
      <link>https://statsandr.com/blog/how-to-publish-shiny-app-example-with-shinyapps-io/</link>
      <pubDate>Fri, 29 May 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/how-to-publish-shiny-app-example-with-shinyapps-io/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#introduction&#34; id=&#34;toc-introduction&#34;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#prerequisite&#34; id=&#34;toc-prerequisite&#34;&gt;Prerequisite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#step-by-step-guide&#34; id=&#34;toc-step-by-step-guide&#34;&gt;Step-by-step guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#additional-notes&#34; id=&#34;toc-additional-notes&#34;&gt;Additional notes&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#settings-of-your-app&#34; id=&#34;toc-settings-of-your-app&#34;&gt;Settings of your app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#publish-your-dataset&#34; id=&#34;toc-publish-your-dataset&#34;&gt;Publish your dataset&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#conclusion&#34; id=&#34;toc-conclusion&#34;&gt;Conclusion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/how-to-deploy-a-shiny-app-an-example-with-shinyapps-io.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;div id=&#34;introduction&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Introduction&lt;/h1&gt;
&lt;p&gt;The &lt;a href=&#34;https://statsandr.com/tags/coronavirus/&#34;&gt;COVID-19&lt;/a&gt; virus led many people to create interactive apps and dashboards. A reader recently asked me how to publish a &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;Shiny app&lt;/a&gt; she just created. Similarly to a previous article where I show &lt;a href=&#34;https://statsandr.com/blog/how-to-upload-r-code-on-github-example-with-an-r-script-on-mac-os/&#34;&gt;how to upload R code on GitHub&lt;/a&gt;, I thought it would be useful to some people to see how I publish my Shiny apps so they could do the same.&lt;/p&gt;
&lt;p&gt;Before going through the different steps required to deploy your Shiny app online, you can check the final result with my apps &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note 1: The screenshots have been taken on MacOS and I have not tested it on Windows. Do not hesitate to let me know in the comments whether it is similar or not on other operating systems.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note 2: There are other ways to publish your app (with Docker for example), but the method shown below is easy (in my opinion) and works well.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;prerequisite&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Prerequisite&lt;/h1&gt;
&lt;p&gt;I personally use the &lt;a href=&#34;https://www.shinyapps.io/&#34; target=&#34;_blank&#34;&gt;shinyapps.io&lt;/a&gt; platform to deploy my &lt;a href=&#34;https://statsandr.com/tags/shiny/&#34;&gt;Shiny apps&lt;/a&gt;. So in order to follow this guide you will first need to create an account (if you do not already have one).&lt;/p&gt;
&lt;p&gt;They offer a free plan, but you are limited to 5 active applications and a monthly usage of 25 active hours.&lt;/p&gt;
&lt;p&gt;For your information, if you make your app available to a wide audience, expect to exceed the monthly cap of active hours quite quickly. To increase the monthly limit (or to publish more than 5 apps), you will need to upgrade your plan to a paying one.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;step-by-step-guide&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Step-by-step guide&lt;/h1&gt;
&lt;p&gt;Below the steps to follow in pictures.&lt;/p&gt;
&lt;p&gt;Step 1: Open &lt;a href=&#34;https://statsandr.com/blog/how-to-install-r-and-rstudio/&#34;&gt;RStudio&lt;/a&gt; and create a new Shiny app:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-1.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 2: Give it a name (without space), choose where to save it and click on the Create button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-2.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 3: In the same way as when you open a new &lt;a href=&#34;https://statsandr.com/blog/getting-started-in-r-markdown/&#34;&gt;R Markdown&lt;/a&gt; document, the code for a basic Shiny app is created. Run the app by clicking on the Run App button to see the result:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-3.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 4: The basic app opens, publish it:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-4.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 5: If it is your first Shiny app, the box “Publish From Account” should be empty. Click on “Add New Account” to link the shinyapps.io account you just created:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-5.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 6: Click on the first alternative (ShinyApps.io):&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-6.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 7: Click on the link to your ShinyApps account:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-7.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 8: Click on the Dashboard button to log in into your account:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-8.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 9: Click on your name and then on Tokens&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-9.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 10: If this is your first app, there should be no token already created. Create one by clicking on the Add Token button. Then Click on the Show button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-10.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 11: Click on the Show Secret button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-11.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 12: Now the code is complete (nothing is hidden anymore). Click on the Copy to clipboard button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-12.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 13: Copy the code and click on the OK button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-13.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 14: Go back to RStudio, paste the code in the console and run it:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-14.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Your computer is now authorized to deploy applications to your shinyapps.io account.&lt;/p&gt;
&lt;p&gt;Step 15: Go back to the window where you can publish your app, choose a title (without space) and click on the Publish button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-15.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 16: After several seconds (depending on the weight of your app), the Shiny app should appear in your internet browser:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-16.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 17: You can now edit the app (or replace the entire code by another of your app), and run the app again by clicking on the Run App button. For this illustration, I just added a link for more information in the side panel:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-17.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 18: Check that the modifications have been taken into account (the link appears in the side panel as expected) and republish your app:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-18.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 19: Click on the Publish button:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Step 20: Your app is live! You can now share it and everyone with the link will be able to use it:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-20.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;additional-notes&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Additional notes&lt;/h1&gt;
&lt;div id=&#34;settings-of-your-app&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Settings of your app&lt;/h2&gt;
&lt;p&gt;If you need to change the settings of your Shiny app, go to your shinyapps.io dashboard and click on the app you just created to access the settings:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-21.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;See the different settings in the tabs located at the top of the windows, and see the link to the app next to the URL field:&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish-shiny-app-online-shinyapps-io-22.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;publish-your-dataset&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Publish your dataset&lt;/h2&gt;
&lt;p&gt;It is often the case that your Shiny app uses a dataset that is not loaded in R by default (it uses one of your dataset that is saved locally on your computer for instance).&lt;/p&gt;
&lt;p&gt;To make the app work with your data, you will also need to publish the data when publishing your app (check the checkbox corresponding to your data):&lt;/p&gt;
&lt;div class=&#34;figure&#34;&gt;
&lt;img src=&#34;https://statsandr.com/blog/2020-05-29-how-to-deploy-a-shiny-app-an-example-with-shinyapps-io_files/publish%20shiny%20app%20shinyapps.io.png&#34; style=&#34;width:100.0%&#34; alt=&#34;&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;Publish your dataset together with the app&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;If you would like to have more flexibility, another way to be able to use an external dataset in your app is to host it online:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;if you have a website, you can easily publish it through your website&lt;/li&gt;
&lt;li&gt;if you do not have a website, you can host the dataset via GitHub (if you do not have an account, it is a good time to create one!)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The last step is then to import the data via that new URL (put the data import in the code of your app).&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope this tutorial helped you to publish your first Shiny app.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Top 100 R resources on COVID-19 Coronavirus</title>
      <link>https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/</link>
      <pubDate>Thu, 12 Mar 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#r-shiny-apps-and-dashboards&#34; id=&#34;toc-r-shiny-apps-and-dashboards&#34;&gt;R Shiny apps and dashboards&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-tracker&#34; id=&#34;toc-coronavirus-tracker&#34;&gt;Coronavirus tracker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-dashboard-from-the-coronavirus-package&#34; id=&#34;toc-coronavirus-dashboard-from-the-coronavirus-package&#34;&gt;Coronavirus dashboard from the &lt;code&gt;{coronavirus} package&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#visualization-of-covid-19-cases&#34; id=&#34;toc-visualization-of-covid-19-cases&#34;&gt;Visualization of Covid-19 Cases&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#modeling-covid-19-spread-vs-healthcare-capacity&#34; id=&#34;toc-modeling-covid-19-spread-vs-healthcare-capacity&#34;&gt;Modeling COVID-19 Spread vs Healthcare Capacity&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-data-visualization-platform&#34; id=&#34;toc-covid-19-data-visualization-platform&#34;&gt;COVID-19 Data Visualization Platform&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-10-day-forecast&#34; id=&#34;toc-coronavirus-10-day-forecast&#34;&gt;Coronavirus 10-day forecast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-covid-19-across-the-world&#34; id=&#34;toc-coronavirus-covid-19-across-the-world&#34;&gt;Coronavirus (COVID-19) across the world&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-outbreak&#34; id=&#34;toc-covid-19-outbreak&#34;&gt;COVID-19 outbreak&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#flatten-the-curve&#34; id=&#34;toc-flatten-the-curve&#34;&gt;Flatten the Curve&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#explore-the-spread-of-covid-19&#34; id=&#34;toc-explore-the-spread-of-covid-19&#34;&gt;Explore the spread of Covid-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#governments-and-covid-19&#34; id=&#34;toc-governments-and-covid-19&#34;&gt;Governments and COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#simulating-covid-19-epidemic-in-togo---west-africa&#34; id=&#34;toc-simulating-covid-19-epidemic-in-togo---west-africa&#34;&gt;Simulating COVID-19 Epidemic in Togo - West Africa&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-prediction&#34; id=&#34;toc-covid-19-prediction&#34;&gt;Covid-19 Prediction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-dashboard&#34; id=&#34;toc-covid-19-dashboard&#34;&gt;Covid-19 Dashboard&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#healthcare-worker-deaths-from-novel-coronavirus-covid-19-in-the-us&#34; id=&#34;toc-healthcare-worker-deaths-from-novel-coronavirus-covid-19-in-the-us&#34;&gt;Healthcare worker deaths from novel Coronavirus (COVID-19) in the US&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-hospitalizations-in-belgium&#34; id=&#34;toc-covid-19-hospitalizations-in-belgium&#34;&gt;Covid-19 Hospitalizations in Belgium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covidminder-where-you-live-matters&#34; id=&#34;toc-covidminder-where-you-live-matters&#34;&gt;COVIDMINDER: Where you live matters!&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-canada-data-explorer-tool&#34; id=&#34;toc-covid-19-canada-data-explorer-tool&#34;&gt;COVID-19 Canada Data Explorer Tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#philippine-covid-19-case-forecasting&#34; id=&#34;toc-philippine-covid-19-case-forecasting&#34;&gt;Philippine COVID-19 Case Forecasting&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-case-death-report-number-corrector&#34; id=&#34;toc-covid-19-case-death-report-number-corrector&#34;&gt;COVID-19 Case &amp;amp; Death Report Number Corrector&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-the-spqeir-model&#34; id=&#34;toc-covid-19-the-spqeir-model&#34;&gt;Covid-19: the SPQEIR model&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#the-belgian-covid-cases-tracker&#34; id=&#34;toc-the-belgian-covid-cases-tracker&#34;&gt;The Belgian Covid Cases Tracker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-monitor&#34; id=&#34;toc-covid-19-monitor&#34;&gt;COVID-19 monitor&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-bulletin-board&#34; id=&#34;toc-covid-19-bulletin-board&#34;&gt;COVID-19 Bulletin Board&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-statistics-displayer&#34; id=&#34;toc-covid-19-statistics-displayer&#34;&gt;Covid-19 Statistics Displayer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronamapper&#34; id=&#34;toc-coronamapper&#34;&gt;CoronaMapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronadash&#34; id=&#34;toc-coronadash&#34;&gt;CoronaDash&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covidfrance&#34; id=&#34;toc-covidfrance&#34;&gt;Covidfrance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#the-impact-of-covid-19-on-mobility&#34; id=&#34;toc-the-impact-of-covid-19-on-mobility&#34;&gt;The Impact of COVID-19 on Mobility&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-analysis-platform&#34; id=&#34;toc-coronavirus-analysis-platform&#34;&gt;Coronavirus Analysis Platform&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-tracker&#34; id=&#34;toc-covid-19-tracker&#34;&gt;COVID-19 Tracker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-overview&#34; id=&#34;toc-covid-19-overview&#34;&gt;COVID-19 Overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-exit-strategies&#34; id=&#34;toc-covid-19-exit-strategies&#34;&gt;COVID-19 Exit Strategies&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#corona-virus-statistics-covid19&#34; id=&#34;toc-corona-virus-statistics-covid19&#34;&gt;Corona Virus Statistics : COVID19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid19-data&#34; id=&#34;toc-covid19-data&#34;&gt;Covid19 Data&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#who-covid-19-explorer&#34; id=&#34;toc-who-covid-19-explorer&#34;&gt;WHO COVID-19 Explorer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-scenario-analysis-tool&#34; id=&#34;toc-covid-19-scenario-analysis-tool&#34;&gt;COVID-19 Scenario Analysis Tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-track&#34; id=&#34;toc-covid-19-track&#34;&gt;Covid-19 track&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#r-packages&#34; id=&#34;toc-r-packages&#34;&gt;R packages&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#ncov2019&#34; id=&#34;toc-ncov2019&#34;&gt;&lt;code&gt;{nCov2019}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus&#34; id=&#34;toc-coronavirus&#34;&gt;&lt;code&gt;{coronavirus}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tidycovid19&#34; id=&#34;toc-tidycovid19&#34;&gt;&lt;code&gt;{tidycovid19}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#r-packages-from-r-epidemics-consortium&#34; id=&#34;toc-r-packages-from-r-epidemics-consortium&#34;&gt;R packages from R Epidemics Consortium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covdata&#34; id=&#34;toc-covdata&#34;&gt;&lt;code&gt;{covdata}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid19italy&#34; id=&#34;toc-covid19italy&#34;&gt;&lt;code&gt;{covid19italy}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid19&#34; id=&#34;toc-covid19&#34;&gt;&lt;code&gt;{COVID19}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covoid&#34; id=&#34;toc-covoid&#34;&gt;&lt;code&gt;{COVOID}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#cdccovidview&#34; id=&#34;toc-cdccovidview&#34;&gt;&lt;code&gt;{cdccovidview}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#babsim.hospital&#34; id=&#34;toc-babsim.hospital&#34;&gt;&lt;code&gt;{babsim.hospital}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#epilps&#34; id=&#34;toc-epilps&#34;&gt;&lt;code&gt;{EpiLPS}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#r-code-and-blog-posts&#34; id=&#34;toc-r-code-and-blog-posts&#34;&gt;R code and blog posts&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#analyzing-covid-19-outbreak-data-with-r&#34; id=&#34;toc-analyzing-covid-19-outbreak-data-with-r&#34;&gt;Analyzing COVID-19 outbreak data with R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-data-analysis-with-tidyverse-and-ggplot2&#34; id=&#34;toc-covid-19-data-analysis-with-tidyverse-and-ggplot2&#34;&gt;COVID-19 Data Analysis with &lt;code&gt;{tidyverse}&lt;/code&gt; and &lt;code&gt;{ggplot2}&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-cumulative-observed-case-fatality-rate-over-time&#34; id=&#34;toc-covid-19-cumulative-observed-case-fatality-rate-over-time&#34;&gt;COVID-19 cumulative observed case fatality rate over time&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-tracking&#34; id=&#34;toc-covid-19-tracking&#34;&gt;Covid 19 Tracking&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#infectious-diseases-and-nonlinear-differential-equations&#34; id=&#34;toc-infectious-diseases-and-nonlinear-differential-equations&#34;&gt;Infectious diseases and nonlinear differential equations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#epidemic-modelling-of-covid-19-in-the-uk-using-an-sir-model&#34; id=&#34;toc-epidemic-modelling-of-covid-19-in-the-uk-using-an-sir-model&#34;&gt;Epidemic modelling of COVID-19 in the UK using an SIR model&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#modeling-pandemics&#34; id=&#34;toc-modeling-pandemics&#34;&gt;Modeling Pandemics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-the-case-of-germany&#34; id=&#34;toc-covid-19-the-case-of-germany&#34;&gt;COVID-19: The Case of Germany&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#flatten-the-covid-19-curve&#34; id=&#34;toc-flatten-the-covid-19-curve&#34;&gt;Flatten the COVID-19 Curve&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#flattening-vs-shrinking-the-math-of-flattenthecurve&#34; id=&#34;toc-flattening-vs-shrinking-the-math-of-flattenthecurve&#34;&gt;Flattening vs shrinking: the math of #FlattenTheCurve&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#explaincovid19-challenge&#34; id=&#34;toc-explaincovid19-challenge&#34;&gt;explainCovid19 challenge&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#an-r-package-to-explore-the-novel-coronavirus&#34; id=&#34;toc-an-r-package-to-explore-the-novel-coronavirus&#34;&gt;An R Package to explore the Novel Coronavirus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-model-using-r-colombia&#34; id=&#34;toc-coronavirus-model-using-r-colombia&#34;&gt;Coronavirus model using R – Colombia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-the-case-of-spain&#34; id=&#34;toc-covid-19-the-case-of-spain&#34;&gt;COVID-19: The Case of Spain&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tidying-the-new-johns-hopkins-covid-19-time-series-datasets&#34; id=&#34;toc-tidying-the-new-johns-hopkins-covid-19-time-series-datasets&#34;&gt;Tidying the new Johns Hopkins Covid-19 time-series datasets&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-in-belgium&#34; id=&#34;toc-covid-19-in-belgium&#34;&gt;COVID-19 in Belgium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#facts-about-coronavirus-disease-2019-covid-19-in-5-charts-created-with-r-and-ggplot2&#34; id=&#34;toc-facts-about-coronavirus-disease-2019-covid-19-in-5-charts-created-with-r-and-ggplot2&#34;&gt;Facts About Coronavirus Disease 2019 (COVID-19) in 5 Charts created with R and ggplot2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#contagiousness-of-covid-19-part-i-improvements-of-mathematical-fitting&#34; id=&#34;toc-contagiousness-of-covid-19-part-i-improvements-of-mathematical-fitting&#34;&gt;Contagiousness of COVID-19 Part I: Improvements of Mathematical Fitting&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#coronavirus-spatially-smoothed-decease-in-france-and-decease-animation-map&#34; id=&#34;toc-coronavirus-spatially-smoothed-decease-in-france-and-decease-animation-map&#34;&gt;Coronavirus : spatially smoothed decease in France and decease animation map&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#another-flatten-the-covid-19-curve-simulation-in-r&#34; id=&#34;toc-another-flatten-the-covid-19-curve-simulation-in-r&#34;&gt;Another “flatten the COVID-19 curve” simulation… in R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tracking-covid19-cases-throughout-nj-with-r&#34; id=&#34;toc-tracking-covid19-cases-throughout-nj-with-r&#34;&gt;Tracking Covid19 Cases Throughout NJ with R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#its-fun-to-look-at-the-yacm-yet-another-covid-model&#34; id=&#34;toc-its-fun-to-look-at-the-yacm-yet-another-covid-model&#34;&gt;It’s fun to look at the YACM (Yet Another COVID Model)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#is-covid-19-as-bad-as-all-that-yes-it-probably-is&#34; id=&#34;toc-is-covid-19-as-bad-as-all-that-yes-it-probably-is&#34;&gt;Is COVID-19 as bad as all that? Yes it probably is&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#potential-long-term-intervention-strategies-for-covid-19&#34; id=&#34;toc-potential-long-term-intervention-strategies-for-covid-19&#34;&gt;Potential Long-Term Intervention Strategies for COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#animations-in-the-time-of-coronavirus&#34; id=&#34;toc-animations-in-the-time-of-coronavirus&#34;&gt;Animations in the time of Coronavirus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-data-and-prediction-for-michigan&#34; id=&#34;toc-covid-19-data-and-prediction-for-michigan&#34;&gt;COVID-19 Data and Prediction for Michigan&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#data-visualization-of-covid-19-in-the-us&#34; id=&#34;toc-data-visualization-of-covid-19-in-the-us&#34;&gt;Data Visualization of COVID-19 in the US&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#the-spread-of-covid-19-across-countries-visualization-with-r&#34; id=&#34;toc-the-spread-of-covid-19-across-countries-visualization-with-r&#34;&gt;The spread of COVID-19 across countries visualization with R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-and-rural-areas-in-the-u.s&#34; id=&#34;toc-covid-19-and-rural-areas-in-the-u.s&#34;&gt;Covid-19 and Rural Areas in the U.S&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-death-rates-is-the-data-correct&#34; id=&#34;toc-covid-death-rates-is-the-data-correct&#34;&gt;Covid Death Rates: Is the data correct?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-risk-heat-maps-with-location-data-apache-arrow-markov-chain-modeling-and-r-shiny&#34; id=&#34;toc-covid-19-risk-heat-maps-with-location-data-apache-arrow-markov-chain-modeling-and-r-shiny&#34;&gt;COVID-19 Risk Heat Maps with Location Data, Apache Arrow, Markov Chain Modeling, and R Shiny&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-tracker-indonesia&#34; id=&#34;toc-covid-19-tracker-indonesia&#34;&gt;COVID-19 Tracker Indonesia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-projections-using-machine-learning&#34; id=&#34;toc-covid-19-projections-using-machine-learning&#34;&gt;COVID-19 Projections Using Machine Learning&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-in-belgium-is-it-over-yet&#34; id=&#34;toc-covid-19-in-belgium-is-it-over-yet&#34;&gt;COVID-19 in Belgium: is it over yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-cases-by-ethnicity&#34; id=&#34;toc-covid-19-cases-by-ethnicity&#34;&gt;COVID-19 Cases by Ethnicity&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tennessee-covid-19-update&#34; id=&#34;toc-tennessee-covid-19-update&#34;&gt;Tennessee COVID-19 Update&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#simulating-coronavirus-outbreak-in-cities-with-origin-destination-matrix-and-seir-model&#34; id=&#34;toc-simulating-coronavirus-outbreak-in-cities-with-origin-destination-matrix-and-seir-model&#34;&gt;Simulating Coronavirus Outbreak in Cities with Origin-Destination Matrix and SEIR Model&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-population-mobility---how-has-human-mobility-changed-under-the-covid-19-pandemic&#34; id=&#34;toc-covid-19-population-mobility---how-has-human-mobility-changed-under-the-covid-19-pandemic&#34;&gt;COVID-19 Population Mobility - How has human mobility changed under the COVID-19 Pandemic?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#how-to-build-covid-19-data-driven-shiny-apps-in-5-minutes&#34; id=&#34;toc-how-to-build-covid-19-data-driven-shiny-apps-in-5-minutes&#34;&gt;How to Build COVID-19 Data-Driven Shiny Apps in 5 minutes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#analyzing-data-from-covid19-r-package&#34; id=&#34;toc-analyzing-data-from-covid19-r-package&#34;&gt;Analyzing data from COVID19 R package&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#body-mass-and-risk-from-covid-19-and-influenza&#34; id=&#34;toc-body-mass-and-risk-from-covid-19-and-influenza&#34;&gt;Body Mass and Risk from COVID-19 and Influenza&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#hmd-weekly-data&#34; id=&#34;toc-hmd-weekly-data&#34;&gt;HMD – Weekly Data&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#guest-posts-on-chris-muirs-blog&#34; id=&#34;toc-guest-posts-on-chris-muirs-blog&#34;&gt;Guest posts on Chris Muir’s blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#an-r-view-into-epidemiology&#34; id=&#34;toc-an-r-view-into-epidemiology&#34;&gt;An R View into Epidemiology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#articles-by-rob-j-hyndman&#34; id=&#34;toc-articles-by-rob-j-hyndman&#34;&gt;Articles by Rob J Hyndman&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#turkey-vs.-germany-covid-19&#34; id=&#34;toc-turkey-vs.-germany-covid-19&#34;&gt;Turkey vs. Germany: COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#hands-on-how-to-build-an-interactive-map-in-r-shiny-an-example-for-the-covid-19-dashboard&#34; id=&#34;toc-hands-on-how-to-build-an-interactive-map-in-r-shiny-an-example-for-the-covid-19-dashboard&#34;&gt;Hands-on: How to build an interactive map in R-Shiny: An example for the COVID-19 Dashboard&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#modelling-covid-19-in-morocco&#34; id=&#34;toc-modelling-covid-19-in-morocco&#34;&gt;Modelling COVID-19 in Morocco&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#sir-models-with-kermack-and-mckendrick&#34; id=&#34;toc-sir-models-with-kermack-and-mckendrick&#34;&gt;SIR models with Kermack and McKendrick&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#johns-hopkins-covid-19-data-and-r&#34; id=&#34;toc-johns-hopkins-covid-19-data-and-r&#34;&gt;Johns Hopkins Covid-19 Data and R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#estimating-covid-19s-r_t-in-real-time&#34; id=&#34;toc-estimating-covid-19s-r_t-in-real-time&#34;&gt;Estimating COVID-19’s &lt;span class=&#34;math inline&#34;&gt;\(R_t\)&lt;/span&gt; in Real-Time&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#from-static-to-animated-time-series-the-tidyverse-way&#34; id=&#34;toc-from-static-to-animated-time-series-the-tidyverse-way&#34;&gt;From static to animated time series: the tidyverse way&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#sneak-peek-new-summit-data-tool-helps-clients-visualize-us-areas-that-are-most-heavily-impacted-by-the-covid-19-virus&#34; id=&#34;toc-sneak-peek-new-summit-data-tool-helps-clients-visualize-us-areas-that-are-most-heavily-impacted-by-the-covid-19-virus&#34;&gt;Sneak peek: new Summit data tool helps clients visualize US areas that are most heavily impacted by the COVID-19 virus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#how-to-reproduce-financial-times-style-covid19-daily-reporting&#34; id=&#34;toc-how-to-reproduce-financial-times-style-covid19-daily-reporting&#34;&gt;How to Reproduce Financial Times Style COVID19 Daily Reporting?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#what-can-tweets-about-contact-tracing-apps-tell-us-about-attitudes-towards-data-sharing-for-public-health&#34; id=&#34;toc-what-can-tweets-about-contact-tracing-apps-tell-us-about-attitudes-towards-data-sharing-for-public-health&#34;&gt;What can tweets about contact tracing apps tell us about attitudes towards data sharing for public health?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#visualizing-covid-cases-in-belgium&#34; id=&#34;toc-visualizing-covid-cases-in-belgium&#34;&gt;Visualizing COVID cases in Belgium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#a-spatio-temporal-analysis-of-the-environmental-correlates-of-covid-19-incidence-in-spain&#34; id=&#34;toc-a-spatio-temporal-analysis-of-the-environmental-correlates-of-covid-19-incidence-in-spain&#34;&gt;A spatio-temporal analysis of the environmental correlates of COVID-19 incidence in Spain&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#covid-19-analysis&#34; id=&#34;toc-covid-19-analysis&#34;&gt;Covid-19 Analysis&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#a-simple-way-to-gather-all-coronavirus-related-data-with-r&#34; id=&#34;toc-a-simple-way-to-gather-all-coronavirus-related-data-with-r&#34;&gt;A Simple Way to Gather all Coronavirus Related Data with R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#australian-governments-can-choose-to-slow-the-spread-of-coronavirus-but-they-would-need-to-act-immediately&#34; id=&#34;toc-australian-governments-can-choose-to-slow-the-spread-of-coronavirus-but-they-would-need-to-act-immediately&#34;&gt;Australian governments can choose to slow the spread of coronavirus, but they would need to act immediately&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#does-covid-raise-everyones-relative-risk-of-dying-by-a-similar-amount-more-evidence&#34; id=&#34;toc-does-covid-raise-everyones-relative-risk-of-dying-by-a-similar-amount-more-evidence&#34;&gt;Does Covid raise everyone’s relative risk of dying by a similar amount? More evidence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#tracking-coronavirus-building-parameterized-reports-to-analyze-changing-data-sources&#34; id=&#34;toc-tracking-coronavirus-building-parameterized-reports-to-analyze-changing-data-sources&#34;&gt;Tracking Coronavirus: Building Parameterized Reports to Analyze Changing Data Sources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#mapping-nz-cases-of-covid-19&#34; id=&#34;toc-mapping-nz-cases-of-covid-19&#34;&gt;Mapping NZ cases of COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#visualize-the-pandemic-with-r-covid-19&#34; id=&#34;toc-visualize-the-pandemic-with-r-covid-19&#34;&gt;Visualize the Pandemic with R #COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#exploring-the-temporal-evolution-of-covid-19-cases-in-the-united-states&#34; id=&#34;toc-exploring-the-temporal-evolution-of-covid-19-cases-in-the-united-states&#34;&gt;Exploring the Temporal Evolution of COVID-19 Cases in the United States&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#r-data-analysis-covid-19&#34; id=&#34;toc-r-data-analysis-covid-19&#34;&gt;R Data Analysis: COVID-19&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#ga-covid-19-reports&#34; id=&#34;toc-ga-covid-19-reports&#34;&gt;GA COVID-19 Reports&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#corona-in-belgium&#34; id=&#34;toc-corona-in-belgium&#34;&gt;Corona in Belgium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#the-coronavirus-in-italy-from-the-twitters-point-of-view&#34; id=&#34;toc-the-coronavirus-in-italy-from-the-twitters-point-of-view&#34;&gt;The Coronavirus in Italy from the Twitter’s Point of View&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#use-r-and-tidycensus-to-look-at-covid-19-risk-factors&#34; id=&#34;toc-use-r-and-tidycensus-to-look-at-covid-19-risk-factors&#34;&gt;Use R and Tidycensus to Look at COVID-19 Risk Factors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#animating-u.s.-covid-19-hotspots-over-time&#34; id=&#34;toc-animating-u.s.-covid-19-hotspots-over-time&#34;&gt;Animating U.S. COVID-19 hotspots over time&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#understanding-covid19-in-connecticut.-it-takes-a-town&#34; id=&#34;toc-understanding-covid19-in-connecticut.-it-takes-a-town&#34;&gt;Understanding COVID19 in Connecticut. It takes a town&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#data&#34; id=&#34;toc-data&#34;&gt;Data&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#other-lists-or-collections-of-resources&#34; id=&#34;toc-other-lists-or-collections-of-resources&#34;&gt;Other lists or collections of resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#non-english-resources&#34; id=&#34;toc-non-english-resources&#34;&gt;Non-english resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#conclusion&#34; id=&#34;toc-conclusion&#34;&gt;Conclusion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#references&#34; id=&#34;toc-references&#34;&gt;References&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/top-r-resources-on-coronavirus-covid-19.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Warning: Some links or resources may have been moved or deleted, and are thus not accessible anymore. If you are the author and would like to update the URL, feel free to contact me so I can update the link.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Coronavirus is a serious concern around the globe. With its expansion, there are also more and more online resources about it. This article presents a selection of the best R resources on the COVID-19 virus.&lt;/p&gt;
&lt;p&gt;This list is by no means exhaustive. I am not aware of all R resources available online about the Coronavirus, so please feel free to let me know in the comments or by &lt;a href=&#34;https://statsandr.com/contact/&#34;&gt;contacting me&lt;/a&gt; if you believe that another resource (R package, Shiny app, R code, blog posts, datasets, etc.) deserves to be on this list.&lt;/p&gt;
&lt;div id=&#34;r-shiny-apps-and-dashboards&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;R Shiny apps and dashboards&lt;/h1&gt;
&lt;div id=&#34;coronavirus-tracker&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus tracker&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/r-shiny-app-coronavirus-john-coene.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by John Coene, this &lt;a href=&#34;https://shiny.john-coene.com/coronavirus/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; tracks the spread of the Coronavirus, based on three data sources (John Hopkins, Weixin and DXY Data). The Shiny app, built with shinyMobile (which makes it responsive on different screen sizes), presents in a really nice way the number of deaths, confirmed, suspected and recovered cases by time and region.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/JohnCoene/coronavirus&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-dashboard-from-the-coronavirus-package&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus dashboard from the &lt;code&gt;{coronavirus} package&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus%20dashboard%20from%20the%20coronavirus%20R%20package.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by the author of the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#coronavirus&#34;&gt;&lt;code&gt;{coronavirus} package&lt;/code&gt;&lt;/a&gt;, this &lt;a href=&#34;https://ramikrispin.github.io/coronavirus_dashboard/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; provides an overview of the 2019 Novel Coronavirus COVID-19 (2019-nCoV) epidemic. The data and dashboard are refreshed on a daily basis.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/RamiKrispin/coronavirus_dashboard&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;From this dashboard, I created another &lt;a href=&#34;https://www.antoinesoetewey.com/files/coronavirus-dashboard.html&#34; target=&#34;_blank&#34;&gt;dashboard specific to Belgium&lt;/a&gt;. Feel free to use the code available on &lt;a href=&#34;https://github.com/AntoineSoetewey/coronavirus_dashboard&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt; to build one specific to your country. See more details in this &lt;a href=&#34;https://statsandr.com/blog/how-to-create-a-simple-coronavirus-dashboard-specific-to-your-country-in-r/&#34;&gt;article&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;visualization-of-covid-19-cases&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Visualization of Covid-19 Cases&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Visualization-of-Covid-19-Cases-R-shiny-app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Nico Hahn, this &lt;a href=&#34;https://nicohahn.shinyapps.io/covid19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; uses leaflet, plotly and the data from Johns Hopkins University to visualize the outbreak of the novel Coronavirus and shows data for the entire world or singular countries.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/nicoFhahn/covid_shiny&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;modeling-covid-19-spread-vs-healthcare-capacity&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Modeling COVID-19 Spread vs Healthcare Capacity&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Modeling%20COVID-19%20Spread%20vs%20Healthcare%20Capacity%20R%20shiny%20app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dr. Alison Hill, this &lt;a href=&#34;https://alhill.shinyapps.io/COVID19seir/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; uses an epidemiological model based on the classic SEIR model to describe the spread and clinical progression of COVID-19. It includes different clinical trajectories of infection, interventions to reduce transmission, and comparisons to healthcare capacity.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/alsnhll/SEIR_COVID19&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-data-visualization-platform&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Data Visualization Platform&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Data%20Visualization%20Platform%20R%20Shiny%20app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Shubhram Pandey, this &lt;a href=&#34;https://shubhrampandey.shinyapps.io/coronaVirusViz/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; provides a clear visualization of Covid19 impact all over the world and it also provides a sentiment analysis using natural language processing from Twitter.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/shubhrampandey/coronaVirus-dataViz&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-10-day-forecast&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus 10-day forecast&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus-10-day-forecast-R-shiny-app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by the Spatial Ecology and Evolution Lab, this &lt;a href=&#34;http://covid19forecast.science.unimelb.edu.au/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; gives a ten-day forecast, by country, on likely numbers of Coronavirus cases and gives citizens a sense of how fast this epidemic is progressing.&lt;/p&gt;
&lt;p&gt;See a detailed explanation of the app and how to read it in this &lt;a href=&#34;https://blphillipsresearch.wordpress.com/2020/03/12/coronavirus-forecast/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;. The code is available on &lt;a href=&#34;https://github.com/benflips/nCovForecast&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-covid-19-across-the-world&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus (COVID-19) across the world&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/shiny%20app%20Coronavirus%20(COVID-19)%20Across%20The%20World.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Anisa Dhana in collaboration with datascience+, this &lt;a href=&#34;https://dash.datascienceplus.com/covid19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; monitors the spread of COVID-19 across the world via a map visualization of the confirmed cases and some graphs on the growth of the virus.&lt;/p&gt;
&lt;p&gt;The dataset used is from &lt;a href=&#34;https://github.com/CSSEGISandData/COVID-19&#34; target=&#34;_blank&#34;&gt;Johns Hopkins CSSE&lt;/a&gt; and part of the code is available in this &lt;a href=&#34;https://datascienceplus.com/map-visualization-of-covid19-across-world&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-outbreak&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 outbreak&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19-outbreak-interactive-shiny-app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dr. Thibaut Fabacher in collaboration with the department of Public Health of the Strasbourg University Hospital and the Laboratory of Biostatistics and Medical Informatics of the Strasbourg Medicine Faculty, this &lt;a href=&#34;https://thibautfabacher.shinyapps.io/covid-19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; shows an interactive map for global monitoring of the infection. It focuses on the evolution of the number of cases per country and for a given period in terms of incidence and prevalence.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/DrFabach/Corona&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt; and this &lt;a href=&#34;https://r-posts.com/covid-19-interactive-map-using-r-with-shiny-leaflet-and-dplyr/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; discusses it in more detail.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;flatten-the-curve&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Flatten the Curve&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Flatten%20the%20Curve.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Tinu Schneider, this &lt;a href=&#34;https://tinu.shinyapps.io/Flatten_the_Curve/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; illustrates, in an interactive way, the different scenarios behind the #FlattenTheCurve message.&lt;/p&gt;
&lt;p&gt;The app has been built upon Michael Höhle’s &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#flatten-the-covid-19-curve&#34;&gt;article&lt;/a&gt; and the code is available on &lt;a href=&#34;https://github.com/tinu-schneider/Flatten_the_Curve&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;explore-the-spread-of-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Explore the spread of Covid-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/explore%20the%20spread%20of%20covid-19%20R%20shiny%20app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Joachim Gassen, this &lt;a href=&#34;https://jgassen.shinyapps.io/tidycovid19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; allows you to visualize confirmed, recovered cases and reported deaths for several countries via one summary graph.&lt;/p&gt;
&lt;p&gt;The Shiny app is based on data from:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/CSSEGISandData/COVID-19&#34; target=&#34;_blank&#34;&gt;Johns Hopkins University CSSE team&lt;/a&gt; on the spread of the SARS-CoV-2 virus&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.acaps.org/covid19-government-measures-dataset&#34; target=&#34;_blank&#34;&gt;ACAPS governmental measures database&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://data.worldbank.org/&#34; target=&#34;_blank&#34;&gt;World Bank&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This &lt;a href=&#34;https://joachim-gassen.github.io/2020/03/meet-tidycovid19-yet-another-covid-19-related-r-package/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explains the Shiny app in further details and in particular the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#tidycovid19&#34;&gt;&lt;code&gt;{tidycovid19}&lt;/code&gt; R package&lt;/a&gt; behind it.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;governments-and-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Governments and COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Governments%20and%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Sebastian Engel-Wolf, this &lt;a href=&#34;https://sebastianwolf.shinyapps.io/Corona-Shiny/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; presents in a elegant way the following measurements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Maximum time of exponential growth in a row&lt;/li&gt;
&lt;li&gt;Days to double infections&lt;/li&gt;
&lt;li&gt;Exponential growth today&lt;/li&gt;
&lt;li&gt;Confirmed cases&lt;/li&gt;
&lt;li&gt;Deaths&lt;/li&gt;
&lt;li&gt;Population&lt;/li&gt;
&lt;li&gt;Confirmed cases on 100,000 inhabitants&lt;/li&gt;
&lt;li&gt;Mortality rate&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/zappingseb/coronashiny&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt; and this &lt;a href=&#34;https://mail-wolf.de/?p=4632&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; explains it in further details.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;simulating-covid-19-epidemic-in-togo---west-africa&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Simulating COVID-19 Epidemic in Togo - West Africa&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Simulating%20COVID-19%20Epidemic%20in%20Togo%20-%20West%20Africa%20R%20shiny%20app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dr. Kankoé Sallah, this &lt;a href=&#34;https://c2m-africa.shinyapps.io/togo-covid-shiny/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; uses SEIR metapopulation model with mobility between catchment areas to describe country level spread of COVID-19 and the impact of interventions in Togo, West Africa.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-prediction&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 Prediction&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19%20Prediction.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Manuel Oviedo and Manuel Febrero (Modestya research group of the University of Santiago de Compostela), this &lt;a href=&#34;http://modestya.securized.net/covid19prediction/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; predicts the growth rate at 5-day horizon using the evolution during the last 15 days of growth rate. Three functional regression models are fitted and re-estimated when new data is available. The app also shows an interactive plot and table for the expected number of accumulated cases and new daily cases to each horizon (for confirmed and deaths responses) by country (from &lt;a href=&#34;https://github.com/CSSEGISandData/COVID-19&#34; target=&#34;_blank&#34;&gt;Johns Hopkins CSSE&lt;/a&gt;) and Spanish region (from &lt;a href=&#34;https://covid19.isciii.es/&#34; target=&#34;_blank&#34;&gt;ISCII&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;See an explanation of the methodology in the About tab.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-dashboard&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 Dashboard&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/CoVid-19%20Dahsboard.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Philippe De Brouwer, this &lt;a href=&#34;http://www.de-brouwer.com/about/covid.html#covid&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; displays several key measures regarding the outbreak of the virus (by country or for all countries combined), together with some forecasts, a world map and other interactive plots.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;healthcare-worker-deaths-from-novel-coronavirus-covid-19-in-the-us&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Healthcare worker deaths from novel Coronavirus (COVID-19) in the US&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Healthcare%20worker%20deaths%20from%20novel%20Coronavirus%20(COVID-19)%20in%20the%20US.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Jonathan Gross, this &lt;a href=&#34;https://jontheepi.shinyapps.io/hcwcoronavirus/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; visualizes healthcare worker deaths from Coronavirus (COVID-19) in the US reported in the news. It is updated daily and the code is available on &lt;a href=&#34;https://github.com/jontheepi/hcwcoronavirus&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-hospitalizations-in-belgium&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 Hospitalizations in Belgium&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19%20Hospitalizations%20in%20Belgium.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Jean-Michel Bodart, this &lt;a href=&#34;https://rpubs.com/JMBodart/Covid19-hosp-be&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; provides an overview of the evolution of Covid-19-related hospitalizations in Belgium, by region and province.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/jmbo1190/Covid19&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covidminder-where-you-live-matters&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVIDMINDER: Where you live matters!&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVIDMINDER-%20Where%20you%20live%20matters!.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by The Rensselaer Institute for Data Exploration and Applications, this &lt;a href=&#34;https://covidminder.idea.rpi.edu/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; reveals the regional disparities in outcomes, determinants and medications (e.g., mortality rates, test cases, diabetes, and hospital beds) across United States, with a special focus on New York.&lt;/p&gt;
&lt;p&gt;This &lt;a href=&#34;https://towardsdatascience.com/covidminder-where-you-live-matters-rshiny-and-leaflet-based-visualization-tool-168e3857dbf2&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explains the Shiny app in more detail and the code is available on &lt;a href=&#34;https://github.com/TheRensselaerIDEA/COVIDMINDER&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-canada-data-explorer-tool&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Canada Data Explorer Tool&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Canada%20Data%20Explorer%20Tool.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Petr Baranovskiy from Data Enthusiast’s Blog, this &lt;a href=&#34;https://dataenthusiast.ca/apps/covid_ca/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; processes the official dataset available from the Government of Canada and shows several indicators related to the SARS-CoV-2 epidemic in Canada.&lt;/p&gt;
&lt;p&gt;This &lt;a href=&#34;https://dataenthusiast.ca/2020/covid-19-canada-data-explorer/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; details the application in further detail.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;philippine-covid-19-case-forecasting&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Philippine COVID-19 Case Forecasting&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Philippine%20COVID-19%20Case%20Forecasting.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Jamal Kay Rogers and Yvonne Grace Arandela, this &lt;a href=&#34;https://jamalrogersapp.shinyapps.io/tsforecast/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; provides a 5-day forecast of confirmed positive, deaths, and recoveries of COVID-19 cases in The Philippines.&lt;/p&gt;
&lt;p&gt;The app also delivers graphical plots of a 10-day forecast and the daily and cumulated cases of COVID-19 in The Philippines. The data source is Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE).&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-case-death-report-number-corrector&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Case &amp;amp; Death Report Number Corrector&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Case%20&amp;amp;%20Death%20Report%20Number%20Corrector.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Matt Maciejewski, this &lt;a href=&#34;https://pharmhax.shinyapps.io/covid-corrector-shiny/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; focuses on the correction of underreported Covid-19 case and death counts using a reference country based on &lt;a href=&#34;https://www.medrxiv.org/content/10.1101/2020.03.14.20036178v2&#34; target=&#34;_blank&#34;&gt;Lachmann et al. (2020)&lt;/a&gt;, and via a multiplicative estimator for total deaths and cases. The estimator will be turned into a posterior prediction once data becomes available.&lt;/p&gt;
&lt;p&gt;The app is explained in more detail in this &lt;a href=&#34;https://www.neurosynergy.io/articles/fixingcovid-19underreporting&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; and the code of the Shiny app can be found on &lt;a href=&#34;https://github.com/pharmhax/covid19-corrector&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-the-spqeir-model&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19: the SPQEIR model&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19%20the%20SPQEIR%20model.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by several researchers from the Luxembourg Centre for Systems Biomedicine (LCSB) of the University of Luxembourg, the KU Leuven and the UGent, this &lt;a href=&#34;https://jose-ameijeiras.shinyapps.io/SPQEIR_model/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; uses the new &lt;a href=&#34;https://www.medrxiv.org/content/10.1101/2020.04.22.20075804v1&#34; target=&#34;_blank&#34;&gt;SPQEIR model&lt;/a&gt; to simulate the impact of various suppression strategies (social distancing, lockdown, protection, etc.) on the development of COVID-19.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;the-belgian-covid-cases-tracker&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;The Belgian Covid Cases Tracker&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/The%20Belgian%20Covid%20Cases%20Tracker%20shiny%20app.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Patrick Sciortino, this &lt;a href=&#34;https://psciortino.shinyapps.io/BelgianCovidCasesTracker/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; aims at estimating the curve of true Covid-19 cases based on the idea that a hospitalized case in time &lt;em&gt;t&lt;/em&gt; informs us about an infection that took place a few days earlier.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-monitor&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 monitor&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20monitor.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Trafford Data Lab, this &lt;a href=&#34;https://trafforddatalab.shinyapps.io/covid-19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; visualizes daily confirmed Coronavirus cases and deaths in the UK.&lt;/p&gt;
&lt;p&gt;It uses the following data sources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.ecdc.europa.eu/en/publications-data/download-todays-data-geographic-distribution-covid-19-cases-worldwide&#34; target=&#34;_blank&#34;&gt;European Centre for Disease Prevention and Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.gov.uk/government/publications/covid-19-track-coronavirus-cases&#34; target=&#34;_blank&#34;&gt;Public Health England&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.bsg.ox.ac.uk/research/research-projects/coronavirus-government-response-tracker&#34; target=&#34;_blank&#34;&gt;Blavatnik School of Government, Oxford University&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The code can be found on &lt;a href=&#34;https://github.com/traffordDataLab/covid-19&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-bulletin-board&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Bulletin Board&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Bulletin%20Board.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Wei Su, this &lt;a href=&#34;https://covid-2019.live/en/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; shows real-time visualization of the COVID-19 epidemic in Japan. It mainly shows various indicators including, but not limited to, PCR test, positive confirmed, hospital discharge and death, as well as trends in each prefecture in Japan. There are also a variety of charts such as cluster network, new confirmed cases in log scale for users’ reference.&lt;/p&gt;
&lt;p&gt;The dashboard is based on this &lt;a href=&#34;https://covid-2019.live/&#34; target=&#34;_blank&#34;&gt;Japanese version&lt;/a&gt; (developed by the same author). The code can be found on &lt;a href=&#34;https://github.com/swsoyee/2019-ncov-japan&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-statistics-displayer&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 Statistics Displayer&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19%20Statistics%20Displayer.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Created by Carl Sansfaçon, this &lt;a href=&#34;http://moduloinfo.ca/wordpress/&#34; target=&#34;_blank&#34;&gt;Wordpress plugin&lt;/a&gt; associates R &lt;a href=&#34;https://statsandr.com/blog/graphics-in-r-with-ggplot2/&#34;&gt;&lt;code&gt;{ggplot2}&lt;/code&gt; graphics&lt;/a&gt; with ARIMA forecast and PHP coding to show evolution of the confirmed, death and recovered cases in different countries, states/provinces and US cities.&lt;/p&gt;
&lt;p&gt;It uses &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#data&#34;&gt;data&lt;/a&gt; from the COVID-19 Data Repository by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University. The plugin can be installed as a &lt;a href=&#34;https://wordpress.org/plugins/covid-19-statistics-displayer/&#34; target=&#34;_blank&#34;&gt;Wordpress plugin&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronamapper&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;CoronaMapper&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/coronascreen.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Supported by OxyLabs, created by Paolo Montemurro and Peter, this &lt;a href=&#34;http://coronamapper.com/&#34; target=&#34;_blank&#34;&gt;visualization&lt;/a&gt; displays the four days average growth indicator, which clearly shows how a certain statistic of the virus is evolving over time, filtering out the noise.&lt;/p&gt;
&lt;p&gt;The website receives data each hour from several official data-sources, and visualizes the historical evolution of COVID19 in an intuitive &amp;amp; interactive way.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronadash&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;CoronaDash&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/CoronaDash.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Peter Laurinec, this &lt;a href=&#34;https://petolau.shinyapps.io/coronadash/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; provides various data mining and visualization techniques for comparing countries’ COVID-19 data statistics as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;extrapolating total confirmed cases by exponential smoothing model,&lt;/li&gt;
&lt;li&gt;trajectories of cases/deaths spread,&lt;/li&gt;
&lt;li&gt;multidimensional clustering of countries’ data/ statistics - with dendrogram and table of clusters averages,&lt;/li&gt;
&lt;li&gt;aggregated views for the whole world,&lt;/li&gt;
&lt;li&gt;hierarchical clustering of countries’ trajectories based on DTW distance and preprocessing by SMA (+ normalization), for fast comparison of a large number of countries’ COVID-19 magnitudes and trends.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This &lt;a href=&#34;https://petolau.github.io/CoronaDash-hierarchical-clustering-countries-trajectories/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explained in further detail the last point of the above list. The code of the app is available on &lt;a href=&#34;https://github.com/PetoLau/CoronaDash&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covidfrance&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covidfrance&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Pressiat.JPG&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Guillaume Pressiat, this &lt;a href=&#34;https://guillaumepressiat.shinyapps.io/covidfrance/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; illustrates the evolution of number of hospitalizations, intensive care units, recoveries and deaths in France (by department).&lt;/p&gt;
&lt;p&gt;This &lt;a href=&#34;https://guillaumepressiat.github.io//blog/2020/05/covidview&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; presents the application and the code of the app is available on &lt;a href=&#34;https://gist.github.com/GuillaumePressiat/0e3658624e42f763e3e6a67df92bc6c5&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;the-impact-of-covid-19-on-mobility&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;The Impact of COVID-19 on Mobility&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/google_mobility_plot-COVID19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dimiter Toshkov, this &lt;a href=&#34;https://dimiter.shinyapps.io/covid-19_mobility/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; shows relative changes in mobility (visits and length of stay) for a specific category of places within a country compared to a baseline. The baseline is computed as the median for the day of the week during the 5-week period between January 3 and February 6, 2020. Hence, the plot shows how mobility has changed relative to the situation in the same country in the beginning of the year.&lt;/p&gt;
&lt;p&gt;The author also developed a version for the &lt;a href=&#34;https://dimiter.shinyapps.io/COVID-19-US-Mobility/&#34; target=&#34;_blank&#34;&gt;US states&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Data is from &lt;a href=&#34;https://www.google.com/covid19/mobility/&#34; target=&#34;_blank&#34;&gt;Google Community Mobility Reports&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-analysis-platform&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus Analysis Platform&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Corona%20Virus%20Analysis%20Platform.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Khaled M Alqahtani, this &lt;a href=&#34;https://drkhalid.shinyapps.io/covid19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; offers a powerful analysis tools, including:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Descriptive analysis&lt;/li&gt;
&lt;li&gt;Growth rate and curve flatting&lt;/li&gt;
&lt;li&gt;Cumulative forecast&lt;/li&gt;
&lt;li&gt;Daily cases forecasting containing 16 different models&lt;/li&gt;
&lt;li&gt;Newspaper analysis&lt;/li&gt;
&lt;li&gt;TV analysis&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Data is from &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#data&#34;&gt;Johns Hopkins CSSE&lt;/a&gt; and some GDELT APIs.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-tracker&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Tracker&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Tracker.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dr. Magda Bucholc from Ulster University, this &lt;a href=&#34;https://nicovidtracker.org/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; reports cases at the local government district in Northern Ireland and county level across the island of Ireland, providing gender and age breakdowns of reported cases, growth rates, and statistics per 100,000 of the population; it also has daily mobility data from Google and Apple.&lt;/p&gt;
&lt;p&gt;More information about this dashboard can be found &lt;a href=&#34;https://www.ulster.ac.uk/news/2020/june/ulster-university-covid-19-tracker-compares-ni-and-roi-data-on-coronavirus-testing,-positive-cases-and-deaths&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-overview&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Overview&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Overview.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Fabian Dablander, Alexandra Rusu, Marcel Schreiner, and Aleksandar Tomasevic as part of the Science versus Corona project, this &lt;a href=&#34;https://scienceversuscorona.shinyapps.io/covid-overview/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; provides an overview of confirmed cases, deaths, and measures that countries have taken to curb the spread of the virus.&lt;/p&gt;
&lt;p&gt;For a more information about this dashboard, see this &lt;a href=&#34;https://scienceversuscorona.com/visualising-the-covid-19-pandemic/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-exit-strategies&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Exit Strategies&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Interactive%20exploration%20of%20COVID-19%20exit%20strategies.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed as part of the Science versus Corona project, this &lt;a href=&#34;https://scienceversuscorona.shinyapps.io/covid-exit/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; compares several alternative exit strategies that either aim to keep the number of infections as low as possible (e.g., contact tracing), or that aim to develop herd immunity without exceeding health care capacity.&lt;/p&gt;
&lt;p&gt;The Shiny app is based on the stochastic individual-based SEIR model developed by &lt;span class=&#34;citation&#34;&gt;de Vlas and Coffeng (&lt;a href=&#34;#ref-de2020phased&#34; role=&#34;doc-biblioref&#34;&gt;2020&lt;/a&gt;)&lt;/span&gt;. This &lt;a href=&#34;https://fabiandablander.com/r/Covid-Exit.html&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; explains the Shiny app in more detail.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;corona-virus-statistics-covid19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Corona Virus Statistics : COVID19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/alenazi-covid19-dashboard.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dr. Mohammed N. Alenezi, this &lt;a href=&#34;https://m-alenezi.shinyapps.io/CoronaKW3/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; displays the latest information about Coronavirus for Kuwait, GCC, and the world. The dashboard contains a collection of different plots and models presented under 8 tabs.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid19-data&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid19 Data&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid19%20Data.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Dhafer Malouche, this &lt;a href=&#34;https://malouche.github.io/covid19data/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; presents statistics for more than 200 countries and regions, with the estimation of the reproduction number &lt;span class=&#34;math inline&#34;&gt;\(R(t)\)&lt;/span&gt; in the previous 60 days and a Covid19 country classification.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;who-covid-19-explorer&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;WHO COVID-19 Explorer&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/WHO%20COVID-19%20Explorer.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by the World Health Organization (WHO), this &lt;a href=&#34;https://worldhealthorg.shinyapps.io/covid/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; aims to provide frequently updated data visualizations about confirmed cases and deaths at the global, regional and country level.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-scenario-analysis-tool&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Scenario Analysis Tool&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Scenario%20Analysis%20Tool.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by the MRC Centre for Global Infectious Disease Analysis (Imperial College London), this &lt;a href=&#34;https://www.covidsim.org/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; illustrates the epidemic trajectory, the healthcare demand and the &lt;span class=&#34;math inline&#34;&gt;\(R_t\)&lt;/span&gt; &amp;amp; &lt;span class=&#34;math inline&#34;&gt;\(R_{eff}\)&lt;/span&gt; measures for many countries over time in interactive plots.&lt;/p&gt;
&lt;p&gt;The dashboard uses the &lt;a href=&#34;https://github.com/mrc-ide/squire&#34; target=&#34;_blank&#34;&gt;squire&lt;/a&gt; R package, among others.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-track&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 track&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/covid19-track-redzuan.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Redzuan, this Shiny &lt;a href=&#34;https://redzuana.shinyapps.io/covid_track/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt; analyses, combines and harmonizes the latest Covid-19 data into progress timeline, comparative analysis on various areas, mapping, latest news, forecasting using various models, prediction on Herd Immunity target, summary table, downloadable fact sheet and other features.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;r-packages&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;R packages&lt;/h1&gt;
&lt;div id=&#34;ncov2019&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{nCov2019}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/nCov2019%20R%20package%20for%20studying%20COVID-19%20coronavirus%20outbreak.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href=&#34;https://github.com/GuangchuangYu/nCov2019&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{nCov2019}&lt;/code&gt; package&lt;/a&gt; gives you access to epidemiological data on the Coronavirus outbreak.&lt;a href=&#34;#fn1&#34; class=&#34;footnote-ref&#34; id=&#34;fnref1&#34;&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; The package gives real-time statistics, includes historical data and a Shiny app. The &lt;a href=&#34;https://guangchuangyu.github.io/nCov2019/&#34; target=&#34;_blank&#34;&gt;vignette&lt;/a&gt; explains the main functions and possibilities of the package.&lt;/p&gt;
&lt;p&gt;Furthermore, the authors of the package also developed a &lt;a href=&#34;http://www.bcloud.org/e/&#34; target=&#34;_blank&#34;&gt;website&lt;/a&gt; with interactive plots and time-series forecasts, which could be useful in informing the public and studying how the virus spread in populous countries.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{coronavirus}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/coronavirus%20R%20package.png&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Rami Krispin, the &lt;a href=&#34;https://github.com/RamiKrispin/coronavirus&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{coronavirus} package&lt;/code&gt;&lt;/a&gt; provides a tidy format dataset of the 2019 Novel Coronavirus COVID-19 (2019-nCoV) epidemic. Pulled from the dataset of &lt;a href=&#34;https://github.com/CSSEGISandData/COVID-19&#34; target=&#34;_blank&#34;&gt;John Hopkins&lt;/a&gt;, the R package gives a daily summary of the Coronavirus cases by state/province. The data set contains various variables such as confirmed cases, death, and recovered across different countries and states.&lt;/p&gt;
&lt;p&gt;More details are available &lt;a href=&#34;https://ramikrispin.github.io/coronavirus/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;, a &lt;code&gt;csv&lt;/code&gt; format of the package dataset is available &lt;a href=&#34;https://github.com/RamiKrispin/coronavirus-csv&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; and a summary dashboard is available &lt;a href=&#34;https://ramikrispin.github.io/coronavirus_dashboard/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;tidycovid19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{tidycovid19}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/%7Btidycovid19%7D%20Yet%20another%20Covid-19%20related%20R%20Package.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Joachim Gassen, the &lt;a href=&#34;https://github.com/joachim-gassen/tidycovid19&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{tidycovid19}&lt;/code&gt; package&lt;/a&gt; allows you to download, tidy and visualize Covid-19 related data (including data on governmental measures) directly from authoritative sources. It also provides a flexible function and an accompanying &lt;a href=&#34;https://jgassen.shinyapps.io/tidycovid19/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; to visualize the spreading of the virus.&lt;/p&gt;
&lt;p&gt;The package is available on &lt;a href=&#34;https://github.com/joachim-gassen/tidycovid19&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt; and these blog posts &lt;a href=&#34;https://joachim-gassen.github.io/2020/03/meet-tidycovid19-yet-another-covid-19-related-r-package/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; and &lt;a href=&#34;https://joachim-gassen.github.io/2020/04/tidycovid19-new-viz-and-npi_lifting/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; explain it in more detail.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;r-packages-from-r-epidemics-consortium&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;R packages from R Epidemics Consortium&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/R%20packages%20from%20R%20Epidemics%20Consortium%20to%20analyze%20COVID-19%20outbreak.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;These &lt;a href=&#34;https://www.repidemicsconsortium.org/projects/&#34; target=&#34;_blank&#34;&gt;R packages&lt;/a&gt; from R Epidemics Consortium allows you to find the most advanced tools used by professional epidemiologists and experts in the domain of analyzing disease outbreaks.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covdata&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{covdata}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/covdata%20R%20package%20COVID-19%20datasets.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Prof. Kieran Healy, the &lt;a href=&#34;https://kjhealy.github.io/covdata/&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{covdata}&lt;/code&gt; package&lt;/a&gt; is a R package providing COVID-19 case data from multiple sources:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;National level data from the &lt;a href=&#34;https://www.ecdc.europa.eu/en&#34; target=&#34;_blank&#34;&gt;European Centers for Disease Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;State-level data for the United States from the &lt;a href=&#34;https://covidtracking.com/&#34; target=&#34;_blank&#34;&gt;COVID Tracking Project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;State-level and county-level data for the United States from the &lt;a href=&#34;https://github.com/nytimes/covid-19-data&#34; target=&#34;_blank&#34;&gt;New York Times&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Data from the US Centers for Disease Control’s &lt;a href=&#34;https://www.cdc.gov/coronavirus/2019-ncov/covid-data/covidview/index.html&#34; target=&#34;_blank&#34;&gt;Coronavirus Disease 2019 (COVID-19)-Associated Hospitalization Surveillance Network&lt;/a&gt; (COVID-NET)&lt;/li&gt;
&lt;li&gt;Data from &lt;a href=&#34;https://www.apple.com/covid19/mobility&#34; target=&#34;_blank&#34;&gt;Apple&lt;/a&gt; on relative trends in mobility in cities and countries since mid-January of 2020, based on usage of their Maps application&lt;/li&gt;
&lt;li&gt;Data from &lt;a href=&#34;https://www.google.com/covid19/mobility/index.html?hl=en&#34; target=&#34;_blank&#34;&gt;Google&lt;/a&gt; on relative trends in mobility in regions and countries since mid-January of 2020, based on location and activity information&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/kjhealy/covdata/&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid19italy&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{covid19italy}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/covid19italy%20r%20package.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href=&#34;https://github.com/Covid19R/covid19italy&#34; target=&#34;_blank&#34;&gt;covid19italy R package&lt;/a&gt; provides a tidy format dataset of the 2019 Novel Coronavirus COVID-19 (2019-nCoV) pandemic outbreak in Italy. The package includes the following three datasets:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;code&gt;italy_total&lt;/code&gt;: daily summary of the outbreak on the national level&lt;/li&gt;
&lt;li&gt;&lt;code&gt;italy_region&lt;/code&gt;: daily summary of the outbreak on the region level&lt;/li&gt;
&lt;li&gt;&lt;code&gt;italy_province&lt;/code&gt;: daily summary of the outbreak on the province level&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;More information about the package datasets available in this &lt;a href=&#34;https://covid19r.github.io/covid19italy/articles/intro.html&#34; target=&#34;_blank&#34;&gt;vignette&lt;/a&gt;, this &lt;a href=&#34;https://ramikrispin.github.io/2020/05/covid19italy-v0-2-0-is-now-on-cran/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;, and this supporting &lt;a href=&#34;https://ramikrispin.github.io/italy_dash/&#34; target=&#34;_blank&#34;&gt;dashboard&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Data source: &lt;a href=&#34;http://www.protezionecivile.it/&#34; target=&#34;_blank&#34;&gt;Italy Department of Civil Protection&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{COVID19}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID19%20R%20package.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;The goal of &lt;a href=&#34;https://covid19datahub.io/&#34; target=&#34;_blank&#34;&gt;COVID-19 Data Hub&lt;/a&gt; is to provide the research community with a unified data hub by collecting worldwide fine-grained case data, merged with exogenous variables helpful for a better understanding of COVID-19. Featured by the University of Milano and funded by the &lt;a href=&#34;https://ivado.ca/en/covid-19/#phares&#34; target=&#34;_blank&#34;&gt;Institute for Data Valorization IVADO&lt;/a&gt;, Canada.&lt;/p&gt;
&lt;p&gt;The package collects COVID-19 data across governmental sources, includes policy measures from &lt;a href=&#34;https://www.bsg.ox.ac.uk/research/research-projects/coronavirus-government-response-tracker&#34; target=&#34;_blank&#34;&gt;Oxford COVID-19 Government Response Tracker&lt;/a&gt;, and extends the dataset via an interface to &lt;a href=&#34;https://data.worldbank.org/&#34; target=&#34;_blank&#34;&gt;World Bank Open Data&lt;/a&gt;, &lt;a href=&#34;https://www.google.com/covid19/mobility/&#34; target=&#34;_blank&#34;&gt;Google Mobility Reports&lt;/a&gt; and &lt;a href=&#34;https://www.apple.com/covid19/mobility&#34; target=&#34;_blank&#34;&gt;Apple Mobility Reports&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The package is available on &lt;a href=&#34;https://cloud.r-project.org/package=COVID19&#34; target=&#34;_blank&#34;&gt;CRAN&lt;/a&gt;, it is 100% &lt;a href=&#34;https://github.com/covid19datahub/COVID19/&#34; target=&#34;_blank&#34;&gt;open source&lt;/a&gt; and external contributors are welcomed to join.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covoid&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{COVOID}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVOID%20R%20package.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://cbdrh.github.io/covoidance/&#34; target=&#34;_blank&#34;&gt;COVOID&lt;/a&gt; (for &lt;strong&gt;COV&lt;/strong&gt;ID-19 &lt;strong&gt;O&lt;/strong&gt;pen-source &lt;strong&gt;I&lt;/strong&gt;nfection &lt;strong&gt;D&lt;/strong&gt;ynamics project) is a R package for modelling COVID-19 and other infectious diseases using deterministic compartmental models (DCMs).&lt;/p&gt;
&lt;p&gt;It contains a built-in &lt;a href=&#34;https://cbdrh.shinyapps.io/covoidance/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; enabling easy use and demonstration of key concepts to those without R programming backgrounds, along with an expanding API for simulating and estimating homogeneous and age-structured SIR, SEIR and extended models. In particular COVOID allows the simultaneous simulation of age specific (e.g. school closures) and general interventions over varying time intervals.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/CBDRH/covoid&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;cdccovidview&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{cdccovidview}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/%7Bcdccovidview%7D%20—%20To%20Work%20with%20the%20U.S.%20CDC’s%20New%20COVID-19%20Trackers-%20COVIDView%20and%20COVID-NET.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Bob Rudis, the &lt;a href=&#34;https://cinc.rud.is/web/packages/cdccovidview/index.html&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{cdccovidview}&lt;/code&gt; package&lt;/a&gt; can be used to work with the U.S. CDC’s New COVID-19 Trackers: &lt;a href=&#34;https://www.cdc.gov/coronavirus/2019-ncov/covid-data/covidview/index.html&#34; target=&#34;_blank&#34;&gt;COVIDView&lt;/a&gt; and &lt;a href=&#34;https://gis.cdc.gov/grasp/COVIDNet/COVID19_3.html&#34; target=&#34;_blank&#34;&gt;COVID-NET&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;babsim.hospital&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{babsim.hospital}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/BaBSim.Hospital%20R%20package.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by several researchers from TH Köln, the &lt;a href=&#34;https://CRAN.R-project.org/package=babsim.hospital&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;{babsim.hospital}&lt;/code&gt; package&lt;/a&gt; implements a discrete-event simulation model for a hospital resource planning problem. It can be used by health departments to forecast demand for intensive care beds, ventilators, and staff resources.&lt;/p&gt;
&lt;p&gt;The team also developed a &lt;a href=&#34;https://covid-resource-sim.th-koeln.de/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; which predicts COVID-19 ICU bed resources in hospitals. The app is available in English and German.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;epilps&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;&lt;code&gt;{EpiLPS}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/EpiLPS.PNG&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by several researchers working in the field of epidemiology, the package shows how to smooth epidemic curves and estimate the time-varying reproduction number in a flexible way.&lt;/p&gt;
&lt;p&gt;More information can be found in:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the &lt;a href=&#34;https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1010618&#34;&gt;research paper&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;the accompanying &lt;a href=&#34;https://epilps.com/&#34;&gt;website&lt;/a&gt;, and&lt;/li&gt;
&lt;li&gt;this &lt;a href=&#34;https://statsandr.com/blog/paper-epilps-a-fast-and-flexible-bayesian-tool-for-estimation-of-the-time-varying-reproduction-number/&#34;&gt;summary&lt;/a&gt; written by one of the authors.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;r-code-and-blog-posts&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;R code and blog posts&lt;/h1&gt;
&lt;div id=&#34;analyzing-covid-19-outbreak-data-with-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Analyzing COVID-19 outbreak data with R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Analyzing%20COVID-19%20outbreak%20data%20with%20R.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Tim Churches, these two articles (&lt;a href=&#34;https://timchurches.github.io/blog/posts/2020-02-18-analysing-covid-19-2019-ncov-outbreak-data-with-r-part-1/&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; and &lt;a href=&#34;https://timchurches.github.io/blog/posts/2020-03-01-analysing-covid-19-2019-ncov-outbreak-data-with-r-part-2/&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;) explore the R tools and packages that might be used to analyze the COVID-19 data. In particular, the author considers when the pandemic will subside in China, and then turns the analysis on Japan, South Korea, Italy and Iran. He also shows improvements on the cumulative incidence plots that are so common. Moreover, he presents R code to analyze how contagious is the Coronavirus thanks to the classic SIR (Susceptible-Infectious-Recovered) compartmental model of communicable disease outbreaks.&lt;a href=&#34;#fn2&#34; class=&#34;footnote-ref&#34; id=&#34;fnref2&#34;&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The code is available on GitHub (&lt;a href=&#34;https://github.com/timchurches/blog/tree/master/_posts/2020-02-18-analysing-covid-19-2019-ncov-outbreak-data-with-r-part-1&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; and &lt;a href=&#34;https://github.com/timchurches/blog/tree/master/_posts/2020-03-01-analysing-covid-19-2019-ncov-outbreak-data-with-r-part-2&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Part 1 is actually based on another shorter blog post by Prof. Dr. Holger K. von Jouanne-Diedrich from &lt;a href=&#34;https://blog.ephorie.de/&#34; target=&#34;_blank&#34;&gt;Learning Machines&lt;/a&gt;. Read his &lt;a href=&#34;https://blog.ephorie.de/epidemiology-how-contagious-is-novel-coronavirus-2019-ncov&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; for a more concise analysis on how to model the outbreak of the Coronavirus and discover how contagious it is. Note that I have personally written an article analyzing &lt;a href=&#34;https://statsandr.com/blog/covid-19-in-belgium/&#34;&gt;COVID-19 in Belgium&lt;/a&gt; based on articles from these two authors.&lt;/p&gt;
&lt;p&gt;More recently, Tim Churches published a series of other interesting articles:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Modelling the effect of various public health interventions on the local epidemic spread of COVID-19 infection using stochastic individual compartmental models (ICMs) implemented by the &lt;code&gt;{EpiModel}&lt;/code&gt; package for R:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://timchurches.github.io/blog/posts/2020-03-10-modelling-the-effects-of-public-health-interventions-on-covid-19-transmission-part-1/&#34; target=&#34;_blank&#34;&gt;Part 1&lt;/a&gt; (code &lt;a href=&#34;https://github.com/timchurches/blog/tree/master/_posts/2020-03-10-modelling-the-effects-of-public-health-interventions-on-covid-19-transmission-part-1&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://timchurches.github.io/blog/posts/2020-03-18-modelling-the-effects-of-public-health-interventions-on-covid-19-transmission-part-2/&#34; target=&#34;_blank&#34;&gt;Part 2&lt;/a&gt; (code &lt;a href=&#34;https://github.com/timchurches/blog/tree/master/_posts/2020-03-18-modelling-the-effects-of-public-health-interventions-on-covid-19-transmission-part-2&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://rviews.rstudio.com/2020/03/19/simulating-covid-19-interventions-with-r/&#34; target=&#34;_blank&#34;&gt;The use of simulations to explore the effects of various interventions on COVID-19 spread&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://rviews.rstudio.com/2020/03/05/covid-19-epidemiology-with-r/&#34; target=&#34;_blank&#34;&gt;COVID-19 epidemiology with R&lt;/a&gt;: in this blog post, the author, using relatively early and partial US data, separates out inbound from community cases, and predicts the next few weeks of incident numbers. He also highlights several R functions to analyze a disease outbreak.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://newsroom.unsw.edu.au/news/health/we-can-shrink-covid-19-curve-rather-just-flatten-it&#34; target=&#34;_blank&#34;&gt;We can “shrink” the COVID-19 curve, rather than just flatten it&lt;/a&gt; (in collaboration with Louisa Jorm)&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-data-analysis-with-tidyverse-and-ggplot2&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Data Analysis with &lt;code&gt;{tidyverse}&lt;/code&gt; and &lt;code&gt;{ggplot2}&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus%20-%20cases%20by%20country%20in%20R.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Dr. Yanchang Zhao from RDataMining published a data analysis around the Coronavirus with the &lt;code&gt;{tidyverse}&lt;/code&gt; and &lt;code&gt;{ggplot2}&lt;/code&gt; packages, for &lt;a href=&#34;http://www.rdatamining.com/docs/Coronavirus-data-analysis-china.pdf&#34; target=&#34;_blank&#34;&gt;China&lt;/a&gt; and &lt;a href=&#34;http://www.rdatamining.com/docs/Coronavirus-data-analysis-world.pdf&#34; target=&#34;_blank&#34;&gt;world wide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Both documents are a mix of data cleaning, data processing and visualizations of the confirmed/cured cases and death rates across countries or regions.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-cumulative-observed-case-fatality-rate-over-time&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 cumulative observed case fatality rate over time&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20cumulative%20observed%20case%20fatality%20rate%20over%20time.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Peter Ellis, this &lt;a href=&#34;http://freerangestats.info/blog/2020/03/17/covid19-cfr&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; focuses on how the observed case fatality rate of COVID-19 has evolved over time across 7 countries and comments on why the rates vary (low testing rates, age of the population, overwhelmed hospitals, etc.).&lt;/p&gt;
&lt;p&gt;The code is available at the end of the article. The data is from John Hopkins and it uses the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#coronavirus&#34;&gt;&lt;code&gt;{coronavirus} package&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More recently, the author published a series of other articles:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;http://freerangestats.info/blog/2020/03/21/covid19-cfr-demographics&#34; target=&#34;_blank&#34;&gt;Impact of a country’s age breakdown on COVID-19 case fatality rate&lt;/a&gt;: it looks at estimated fatalities in different countries according to the age distributions in those countries (based on Italy’s data). The data is from The Istituto Superiore di Sanità (Roma) and all the code is shown in the post.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://freerangestats.info/blog/2020/04/06/crazy-fox-y-axis&#34; target=&#34;_blank&#34;&gt;How to make that crazy Fox News y axis chart with ggplot2 and scales&lt;/a&gt;: less about COVID19 than about how a bizarre Fox News graph can be re-created with the correct transformations needed to make its scale appropriate.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://freerangestats.info/blog/2020/05/09/covid-population-incidence&#34; target=&#34;_blank&#34;&gt;Test positivity rates and actual incidence and growth of diseases&lt;/a&gt;: this blog post looks at several different ways of accounting for the information given to us by high positive testing rates for COVID-19 and looks at the impact on estimates of effective reproduction number at a point in time.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://freerangestats.info/blog/2020/05/17/covid-texas-incidence&#34; target=&#34;_blank&#34;&gt;Incidence of COVID-19 in Texas after adjusting for test positivity&lt;/a&gt;: the author examines the trends in COVID-19 cases in Texas, with and without being adjusted by a multiplier of the square root of the test positivity rate.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-tracking&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid 19 Tracking&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus%20Covid%2019%20Tracking.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Prof. Kieran Healy, this &lt;a href=&#34;https://kieranhealy.org/blog/archives/2020/03/21/covid-19-tracking/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; discusses how to get an overview of best-available counts of deaths, using the &lt;a href=&#34;https://www.ecdc.europa.eu/en/publications-data/download-todays-data-geographic-distribution-covid-19-cases-worldwide&#34; target=&#34;_blank&#34;&gt;COVID-19 Data from the European Centers for Disease Control&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Code can be found in the article and on &lt;a href=&#34;https://github.com/kjhealy/covid&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More recently, the author published three other articles:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://kieranhealy.org/blog/archives/2020/03/27/a-covid-small-multiple/&#34; target=&#34;_blank&#34;&gt;A COVID Small Multiple&lt;/a&gt;: this article discusses how to create a small-multiple plot of cases by country, showing the trajectory of the outbreak for a large number of countries, with the background of each small-multiple panel also showing (in grey) the trajectory of every other country for comparison.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/A%20COVID%20Small%20Multiple.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;ol start=&#34;2&#34; style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://kieranhealy.org/blog/archives/2020/04/23/apples-covid-mobility-data/&#34; target=&#34;_blank&#34;&gt;Apple’s COVID Mobility Data&lt;/a&gt;: this article uses Apple’s time series mobility data for several cities and countries (via the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covdata&#34;&gt;&lt;code&gt;{covdata}&lt;/code&gt; package&lt;/a&gt;) to plot three modes of getting around: driving, public transit, and walking. The series begins on January 13th indexed to 100 at the beginning of the series, so trends are relative to that baseline.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Apple&amp;#39;s%20COVID%20Mobility%20Data.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;ol start=&#34;3&#34; style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://kieranhealy.org/blog/archives/2020/04/28/new-orleans-and-normalization/&#34; target=&#34;_blank&#34;&gt;New Orleans and Normalization&lt;/a&gt;: this article responds to a thoughtful &lt;a href=&#34;https://leancrew.com/all-this/2020/04/small-multiples-and-normalization/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; by Dr. Drang regarding an improvement in normalization of the data.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/New%20Orleans%20and%20Normalization-Healy.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;infectious-diseases-and-nonlinear-differential-equations&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Infectious diseases and nonlinear differential equations&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Infectious%20diseases%20and%20nonlinear%20differential%20equations.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Fabian Dablander, this math intensive &lt;a href=&#34;https://fabiandablander.com/r/Nonlinear-Infection.html&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explains what SIR and SIRS models take into account and how they calculate their results.&lt;/p&gt;
&lt;p&gt;From a pandemic perspective, the author writes “The SIRS model extends the SIR model, allowing the recovered population to become susceptible again (hence the extra ‘S’). It assumes that the susceptible population increases proportional to the recovered population”.&lt;/p&gt;
&lt;p&gt;More recently, the author, in collaboration with other researchers, published another &lt;a href=&#34;https://scienceversuscorona.com/visualising-the-covid-19-pandemic/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; outlining a number of excellent visualizations of the COVID19 pandemic, as well as presenting their own &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covid-19-overview&#34;&gt;dashboard&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;epidemic-modelling-of-covid-19-in-the-uk-using-an-sir-model&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Epidemic modelling of COVID-19 in the UK using an SIR model&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Epidemic%20modelling%20of%20COVID-19%20in%20the%20UK%20using%20an%20SIR%20model.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Thomas Wilding, this &lt;a href=&#34;https://tjwilding.wordpress.com/2020/03/20/epidemic-modelling-of-covid-19-in-the-uk-using-an-sir-model/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; applies the SIR model to UK data.&lt;/p&gt;
&lt;p&gt;As further extensions to the model, the author suggests:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Using an SEIR model (adding an Exposed compartment for people who are infected but not yet infectious)&lt;/li&gt;
&lt;li&gt;Adding a “Q” layer since a lot of people are being Quarantined or isolated&lt;/li&gt;
&lt;li&gt;Considering the “hidden”” population that is infected but is denied being tested due to shortage of tests&lt;/li&gt;
&lt;li&gt;Feasibility of a second wave / outbreak of the epidemic later in the year (as seen in previous outbreaks, such as Swine Flu)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Data sources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/2020_coronavirus_pandemic_in_the_United_Kingdom&#34; target=&#34;_blank&#34;&gt;Wikipedia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.worldometers.info/coronavirus/country/uk/&#34; target=&#34;_blank&#34;&gt;Worldometers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.theguardian.com/world/2020/mar/23/coronavirus-uk-how-many-confirmed-cases-are-in-your-area&#34; target=&#34;_blank&#34;&gt;The Guardian&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;modeling-pandemics&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Modeling Pandemics&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/MODELING%20PANDEMICS.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Arthur Charpentier, this series of 3 blog post (&lt;a href=&#34;https://freakonometrics.hypotheses.org/60482&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt;, &lt;a href=&#34;https://freakonometrics.hypotheses.org/60543&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;, &lt;a href=&#34;https://freakonometrics.hypotheses.org/60514&#34; target=&#34;_blank&#34;&gt;part 3&lt;/a&gt;) walks through the SIR model and its parameters, how ODEquations solves it, and generating the reproductive rate. It also gives a mathematical explanation of a model for how quickly a pandemic will return, albeit with diminishing intensity. Last, it explains a model that is more sophisticated than SIR, the SEIR model, and illustrates it with Ebola data.&lt;/p&gt;
&lt;p&gt;More recently, the author published another &lt;a href=&#34;https://freakonometrics.hypotheses.org/60900&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; which examines what proportion of the population in various U.S. states have been tested for the novel Coronavirus and tries to answer the following two questions:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;How many people are tested on a daily basis?&lt;/li&gt;
&lt;li&gt;What are we actually testing for?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Last but not least, this &lt;a href=&#34;https://freakonometrics.hypotheses.org/60931&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; reproduces one of his scientific paper entitled “&lt;a href=&#34;https://hal.archives-ouvertes.fr/hal-02572966&#34; target=&#34;_blank&#34;&gt;COVID-19 pandemic control: balancing detection policy and lockdown intervention under ICU sustainability&lt;/a&gt;”.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-the-case-of-germany&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19: The Case of Germany&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20The%20Case%20of%20Germany.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Prof. Dr. Holger K. von Jouanne-Diedrich from Learning Machines, this &lt;a href=&#34;https://blog.ephorie.de/covid-19-the-case-of-germany&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; uses the SIR model and German data to estimate the duration and severity of the pandemic.&lt;/p&gt;
&lt;p&gt;Download the data from &lt;a href=&#34;https://interaktiv.morgenpost.de/corona-virus-karte-infektionen-deutschland-weltweit/data/Coronavirus.history.v2.csv&#34; target=&#34;_blank&#34;&gt;Morgenpost&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More recently, the author published other articles:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://blog.ephorie.de/covid-19-in-the-us-back-of-the-envelope-calculation-of-actual-infections-and-future-deaths&#34; target=&#34;_blank&#34;&gt;COVID-19 in the US: Back-of-the-Envelope Calculation of Actual Infections and Future Deaths&lt;/a&gt;: Working back from reported deaths from Covid19, the post shows how to estimate infections at a prior date, based on several assumptions about fatality rates and infected periods (and acknowledging many unknowns and data problems).&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://blog.ephorie.de/covid-19-analyze-mobility-trends-with-r&#34; target=&#34;_blank&#34;&gt;How to analyze mobility trends with R&lt;/a&gt; using anonymized and aggregated &lt;a href=&#34;https://www.apple.com/covid19/mobility&#34; target=&#34;_blank&#34;&gt;Apple’s mobility data&lt;/a&gt; available to the public. The article presents a R function to return the data in a well-structured format for countries and major cities, and to visualize the drop in vehicular and pedestrian movement caused by the pandemic.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Analyze%20Mobility%20Trends%20with%20R%20using%20apple%20mobility%20data.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;ol start=&#34;3&#34; style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://blog.ephorie.de/covid-19-false-positive-alarm&#34; target=&#34;_blank&#34;&gt;COVID-19: False Positive Alarm&lt;/a&gt;, demonstrating the importance of infection rates on the likelihood that someone testing positive for the Coronavirus is actually positive.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div id=&#34;flatten-the-covid-19-curve&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Flatten the COVID-19 Curve&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Flatten%20the%20COVID-19%20curve.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Michael Höhle from Theory meets practice, this &lt;a href=&#34;https://staff.math.su.se/hoehle/blog/2020/03/16/flatteningthecurve.html&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; discusses why the message of flattening the COVID-19 curve is right, but why some of the visualizations used to show the effect are wrong: Reducing the basic reproduction number does not just stretch the outbreak, it also reduces the final size of the outbreak.&lt;/p&gt;
&lt;p&gt;From a pandemic point of view, the author writes “Because of limited health capacities, stretching out the outbreak over a longer time period will ensure, that a larger proportion of those in need of hospital treatment will actually get it. Other advantages of this approach are to win time in order to find better treatment forms and, possibly, to eventually develop a vaccine”.&lt;/p&gt;
&lt;p&gt;A &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#flatten-the-curve&#34;&gt;Shiny app&lt;/a&gt; has also been built upon this article to investigate different scenarios.&lt;/p&gt;
&lt;p&gt;In a second article entitled “&lt;a href=&#34;https://staff.math.su.se/hoehle/blog/2020/04/15/effectiveR0.html&#34; target=&#34;_blank&#34;&gt;Effective reproduction number estimation&lt;/a&gt;”, Michael Höhle estimates with the &lt;code&gt;{R0}&lt;/code&gt; package the time-varying effective reproduction number during an infectious disease outbreak such as COVID-19. Using a single simulated outbreak he compares the performance of three different estimation methods.&lt;/p&gt;
&lt;p&gt;More recently, in this &lt;a href=&#34;https://staff.math.su.se/hoehle/blog/2020/05/31/superspreader.html&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; the author looks at “superspreading” in infectious disease transmission from a statistical point of view. He characterises heterogeneity in the offspring distribution [who becomes infected by the superspreader person] by the Gini coefficient instead of the usual dispersion parameter of the negative binomial distribution. This allows us to consider more flexible offspring distributions.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;flattening-vs-shrinking-the-math-of-flattenthecurve&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Flattening vs shrinking: the math of #FlattenTheCurve&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Flattening%20vs%20shrinking%20the%20math%20of%20FlattenTheCurve.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Ben Bolker and Jonathan Dushoff, this &lt;a href=&#34;http://ms.mcmaster.ca/~bolker/misc/peak_I_simple.html&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; gives a clear explanation of physical distancing and explains how physical distancing makes several beneficial outcomes possible.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/bbolker/bbmisc/blob/master/peak_I_simple.rmd&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;explaincovid19-challenge&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;explainCovid19 challenge&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/explainCovid19%20challenge.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Przemyslaw Biecek, this &lt;a href=&#34;https://medium.com/@ModelOriented/explaincovid19-challenge-2453b255a908&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; gives an overview of a model that uses gradient boosting to predict survival based on age, country, and gender. It also shows how older people are more at risk and it lets you play with the model yourself with a &lt;a href=&#34;https://pbiecek.github.io/explainCOVID19/&#34; target=&#34;_blank&#34;&gt;modelStudio interactive dashboard&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Data sources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.google.com/spreadsheets/u/2/d/e/2PACX-1vQU0SIALScXx8VXDX7yKNKWWPKE1YjFlWc6VTEVSN45CklWWf-uWmprQIyLtoPDA18tX9cFDr-aQ9S6/pubhtml&#34; target=&#34;_blank&#34;&gt;Google sheet&lt;/a&gt; (with most recent data at the end of February)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.kaggle.com/sudalairajkumar/novel-corona-virus-2019-dataset&#34; target=&#34;_blank&#34;&gt;Kaggle dataset&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;an-r-package-to-explore-the-novel-coronavirus&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;An R Package to explore the Novel Coronavirus&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/An%20R%20Package%20to%20Explore%20the%20Novel%20Coronavirus.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Patrick Tung via Towards Data Science, this &lt;a href=&#34;https://towardsdatascience.com/an-r-package-to-explore-the-novel-coronavirus-590055738ad6&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; translates into English an R package originally written in Chinese.&lt;/p&gt;
&lt;p&gt;Data is collected from Tencent, at &lt;a href=&#34;https://news.qq.com/zt2020/page/feiyan.htm&#34; target=&#34;_blank&#34;&gt;https://news.qq.com/zt2020/page/feiyan.htm&lt;/a&gt;, which contains one of the most up-to-date public information of the Coronavirus.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-model-using-r-colombia&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus model using R – Colombia&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus%20model%20using%20R%20—%20Colombia.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Daniel Pena Chavez, this &lt;a href=&#34;https://medium.com/@daniel.pena.chaves/simple-coronavirus-model-using-r-cf6b1bc93949&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; uses the code from Prof. Dr. Holger K. von Jouanne-Diedrich to model height of pandemic in Colombia and projected deaths. The author also points out that a huge number of other variables need to be considered, such as density, climate and government response.&lt;/p&gt;
&lt;p&gt;Data is from &lt;a href=&#34;https://github.com/RamiKrispin&#34; target=&#34;_blank&#34;&gt;Rami Krispin’s GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More recently, the author published another &lt;a href=&#34;https://medium.com/analytics-vidhya/can-the-worse-be-over-covid-19-data-analysis-4e9dd042dd26&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; comparing China and Italy’s rates on log scales.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-the-case-of-spain&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19: The Case of Spain&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/polynomial%20regression%20model%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Jose from Diarium - Statistics and R software, this &lt;a href=&#34;https://diarium.usal.es/jose/2020/03/20/covid-19-the-case-of-spain/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;, using data for Spain, applies the SIR model, and then a cubic polynomial regression model to predict infections, hospitalizations, deaths and peak date.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;tidying-the-new-johns-hopkins-covid-19-time-series-datasets&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Tidying the new Johns Hopkins Covid-19 time-series datasets&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Tidying%20the%20new%20Johns%20Hopkins%20Covid-19%20time-series%20datasets.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Joachim Gassen, this &lt;a href=&#34;https://joachim-gassen.github.io/2020/03/tidying-the-new-johns-hopkins-covid-19-datasests/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; provides functions and code to deal with different country names and changes on the Johns Hopkins site.&lt;/p&gt;
&lt;p&gt;More recently, the author published a series of other interesting articles:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/03/merge-covid-19-data-with-governmental-interventions-data/&#34; target=&#34;_blank&#34;&gt;Merge Covid-19 Data with Governmental Interventions Data&lt;/a&gt;: this article analyzes five kinds of intervention on the spread of COVID-19.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Merge%20Covid-19%20Data%20with%20Governmental%20Interventions%20Data.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;ol start=&#34;2&#34; style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/04/scrape-google-covid19-cmr-data/&#34; target=&#34;_blank&#34;&gt;Scraping Google Covid-19 community movement data from PDF figures&lt;/a&gt;: this article explains how to scrape data from a Google site that tracks movements of people. The author uses the &lt;code&gt;{tidycovid19}&lt;/code&gt; R package and prepares an analysis of Germany and then across countries.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Scraping%20Google%20Covid-19%20community%20movement%20data%20from%20PDF%20figures.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;ol start=&#34;3&#34; style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/04/covid19-explore-your-visualier-dof/&#34; target=&#34;_blank&#34;&gt;Covid-19: Explore Your Visualizer Degrees of Freedom&lt;/a&gt;: in this article, the author uses COVID-19 data to demonstrate how graphs can communicate very differently, and be manipulated. He shows that getting a ‘neutral’ message to the reader is far from trivial and that visualizations without guidance can be particularly misleading.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/05/tidycovid19-new-data-and-doc/&#34; target=&#34;_blank&#34;&gt;{tidycovid19} New data and documentation&lt;/a&gt;: A recent update to the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#tidycovid19&#34;&gt;{tidycovid19}&lt;/a&gt; package brings data on testing, alternative case data, some regional data and proper data documentation. Using all this, you can use the package to explore the associations of (the lifting of) governmental measures, citizen behavior and the Covid-19 spread.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/04/exploring-and-benchmarking-oxford-government-response-data/&#34; target=&#34;_blank&#34;&gt;Exploring and Benchmarking Oxford Government Response Data&lt;/a&gt;: A post assessing the impact of non-pharmaceutical interventions on the spread of Covid-19 based on the &lt;a href=&#34;https://www.acaps.org/covid19-government-measures-dataset&#34; target=&#34;_blank&#34;&gt;Assessment Capacities Project (ACAPS)&lt;/a&gt; and the &lt;a href=&#34;https://www.bsg.ox.ac.uk/research/research-projects/coronavirus-government-response-tracker&#34; target=&#34;_blank&#34;&gt;Oxford Covid-19 Government Response Tracker&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-in-belgium&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 in Belgium&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Coronavirus%20in%20Belgium.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Based on Tim Churches’ &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#analyzing-covid-19-outbreak-data-with-r&#34;&gt;article&lt;/a&gt;, I published an &lt;a href=&#34;https://statsandr.com/blog/covid-19-in-belgium/&#34;&gt;analysis of the COVID-19 specifically for Belgium&lt;/a&gt;. In this article, I also use the most common epidemiological model, the SIR model (to its simplest form), to analyze the outbreak of the disease in the case where there would be no public health intervention. I also show how to compute the reproduction number and I present some additional improvements that can be made to further analyze the epidemic.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/AntoineSoetewey/statsandr/blob/master/content/blog/2020-03-31-covid-19-in-belgium.Rmd&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;, so feel free to use it as starting point for an analysis of the virus outbreak in your own country.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;facts-about-coronavirus-disease-2019-covid-19-in-5-charts-created-with-r-and-ggplot2&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Facts About Coronavirus Disease 2019 (COVID-19) in 5 Charts created with R and ggplot2&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19-Period-of-Infectivity.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Gregory Kanevsky, this &lt;a href=&#34;https://novyden.blogspot.com/2020/03/facts-about-coronavirus-disease-2019.html&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; compiles some useful facts about COVID-19 into 5 charts, including gauge charts, and discusses R and &lt;code&gt;{ggplot2}&lt;/code&gt; techniques used to create them.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;contagiousness-of-covid-19-part-i-improvements-of-mathematical-fitting&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Contagiousness of COVID-19 Part I: Improvements of Mathematical Fitting&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Contagiousness%20of%20COVID-19%20Part%20I-%20Improvements%20of%20Mathematical%20Fitting.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Martijn Weterings on Learning Machines, this &lt;a href=&#34;https://blog.ephorie.de/contagiousness-of-covid-19-part-i-improvements-of-mathematical-fitting-guest-post&#34; target=&#34;_blank&#34;&gt;guest post&lt;/a&gt; describes the fitting of Covid-19 data with the SIR model and explains tricky parts of the fitting methodology and how we can mitigate some of the problems (e.g., early stopping of the algorithm or an ill-conditioned problem). It provides a very clear explanation of some tweaks to the standard model.&lt;/p&gt;
&lt;p&gt;The code is available &lt;a href=&#34;https://blog.ephorie.de/wp-content/uploads/2020/03/covid.r&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;coronavirus-spatially-smoothed-decease-in-france-and-decease-animation-map&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Coronavirus : spatially smoothed decease in France and decease animation map&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Coronavirus%20spatially%20smoothed%20decease%20in%20France.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by Michael Ires, this &lt;a href=&#34;http://r.iresmi.net/2020/03/30/coronavirus-spatially-smoothed-decease-in-france/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows R code on how to use kernel weighted smoothing with arbitrary bounding areas to display a map of deaths from Covid-19 in France.&lt;/p&gt;
&lt;p&gt;The author also published two other articles on how to build an animated map of deaths from Covid-19 in &lt;a href=&#34;http://r.iresmi.net/2020/04/01/covid-19-decease-animation-map/&#34; target=&#34;_blank&#34;&gt;France&lt;/a&gt; and in &lt;a href=&#34;http://r.iresmi.net/2020/05/02/europe-covid-19-death-map/&#34; target=&#34;_blank&#34;&gt;Europe&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More recently, the author published an &lt;a href=&#34;http://r.iresmi.net/2020/05/26/polygons-to-hexagons/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; where he uses the &lt;code&gt;{geogrid}&lt;/code&gt; package to show the incidence of Covid19 by French departments as well as spread.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;another-flatten-the-covid-19-curve-simulation-in-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Another “flatten the COVID-19 curve” simulation… in R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Another%20flatten%20the%20COVID-19%20curve%20simulation%20in%20R.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Javier Fernandez-Lopez, this &lt;a href=&#34;http://allthiswasfield.blogspot.com/2020/04/another-flatten-covid-19-curve.html&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows R code to create static plots and then simulations to demonstrate how social distancing could help to “flat the curve” of COVID-19 infections.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;tracking-covid19-cases-throughout-nj-with-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Tracking Covid19 Cases Throughout NJ with R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/ZoleaNJ04102020.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Kevin Zolea, this &lt;a href=&#34;https://www.kevinzolea.com/posts/covid19_nj/tracking-covid19-cases-throughout-nj-with-r/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows how to use the &lt;code&gt;{gganimate}&lt;/code&gt; package to create an animated time series map showing how Covid19 spread throughout the U.S. state of New Jersey’s counties.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;its-fun-to-look-at-the-yacm-yet-another-covid-model&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;It’s fun to look at the YACM (Yet Another COVID Model)&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Barnettmicrosim04102020.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Adrian Barnett from Median Watch, all the models in this &lt;a href=&#34;https://medianwatch.netlify.com/post/covid-uncertainty/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; are based on the excellent ordinary differential equation models by Alison Hill. They are microsimulations of those models that make heavy use of the &lt;code&gt;{MicSim}&lt;/code&gt; package for running microsimulations in R.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;is-covid-19-as-bad-as-all-that-yes-it-probably-is&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Is COVID-19 as bad as all that? Yes it probably is&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/SmartSimulation-covid19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Dr. Francis Smart from Econometrics By Simulation, this &lt;a href=&#34;http://www.econometricsbysimulation.com/2020/04/is-covid-19-as-bad-as-all-that-yes-it.html&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; explains clearly some of the factors that determine the infections and deaths from COVID19, with different scenarios of seriousness.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;potential-long-term-intervention-strategies-for-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Potential Long-Term Intervention Strategies for COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Potential%20Long-Term%20Intervention%20Strategies%20for%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;On this &lt;a href=&#34;https://covid-measures.github.io/&#34; target=&#34;_blank&#34;&gt;website&lt;/a&gt;, several professors and members of Stanford University (Marissa Childs, Morgan Kain, Devin Kirk, Mallory Harris, Jacob Ritchie, Lisa Couper, Isabel Delwel, Nicole Nova, Erin Mordecai) developed a compartmental model of COVID-19 to evaluate possible outcomes of non-pharmaceutical interventions such as social distancing.&lt;/p&gt;
&lt;p&gt;The website presents an introduction to the problem, the possibility to play around with the model to predict the effects of COVID intervention strategies (thanks to a Shiny app), the model details, and predictions for Santa Clara County, California.&lt;/p&gt;
&lt;p&gt;The code is available on &lt;a href=&#34;https://github.com/morgankain/COVID_interventions&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;animations-in-the-time-of-coronavirus&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Animations in the time of Coronavirus&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Animations%20in%20the%20time%20of%20Coronavirus.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Martin Henze from the Heads or Tails blog, this &lt;a href=&#34;https://heads0rtai1s.github.io/2020/04/30/animate-map-covid/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; describes how to extract and prepare the necessary data to animate the spread of the virus over time in Germany, using &lt;code&gt;{gganimate}&lt;/code&gt; and &lt;code&gt;{sf}&lt;/code&gt; R packages to create animated map visuals.&lt;/p&gt;
&lt;p&gt;The author posted the dataset associated with the Germany maps to &lt;a href=&#34;https://www.kaggle.com/headsortails/covid19-tracking-germany&#34; target=&#34;_blank&#34;&gt;Kaggle&lt;/a&gt;, where he is maintaining it on a daily basis. In addition, he posted a version of the &lt;a href=&#34;https://www.kaggle.com/headsortails/covid19-us-county-jhu-data-demographics&#34; target=&#34;_blank&#34;&gt;JHU US county level dataset&lt;/a&gt; where he added some key demographic info from the US census. This dataset is also updated daily.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-data-and-prediction-for-michigan&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Data and Prediction for Michigan&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Data%20and%20Prediction%20for%20Michigan.png&#34; style=&#34;width:75.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Nagdev Amruthnath, this &lt;a href=&#34;https://iamnagdev.com/?p=646&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; builds and tests an exponential regression model based on (not much) State of Michigan data.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;data-visualization-of-covid-19-in-the-us&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Data Visualization of COVID-19 in the US&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Data%20Visualization%20of%20COVID-19%20in%20the%20US.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Daniel Reiff, this &lt;a href=&#34;https://towardsdatascience.com/data-visualization-of-covid-19-in-the-us-1881938aaf17&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; examines COVID-19 growth dynamics using exponential and logistic curves.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;the-spread-of-covid-19-across-countries-visualization-with-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;The spread of COVID-19 across countries visualization with R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/The%20spread%20of%20COVID-19%20across%20countries%20visualization%20with%20R.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Sergey Bryl, this &lt;a href=&#34;https://analyzecore.com/2020/05/04/the-spread-of-covid-19-across-countries-visualization-with-r/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; examines the speed and spreading of the virus across countries. One animated visualization and two stationary charts show:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;how long and intensive were previous phases and&lt;/li&gt;
&lt;li&gt;compare the effectiveness against COVID-19 for different countries&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The code can be found at the end of the article.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-and-rural-areas-in-the-u.s&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 and Rural Areas in the U.S&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid-19%20and%20Rural%20Areas%20in%20the%20U.S.png&#34; style=&#34;width:80.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Elliot Meador from Deltanomics, this &lt;a href=&#34;https://www.thedeltanomics.com/post/covid-19-rural-deltanomics/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; focuses on cases of Covid-19 in rural areas of the U.S, including whether in the South any particular state appears to be an outlier.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-death-rates-is-the-data-correct&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid Death Rates: Is the data correct?&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Covid%20Death%20Rates%20Is%20the%20data%20correct.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Sam Weiss, this &lt;a href=&#34;http://scweiss.blogspot.com/2020/05/covid-death-rates-is-data-correct.html&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; raises questions about the accuracy of reports of case numbers, in that they may fail to backfill for corrected data.&lt;/p&gt;
&lt;p&gt;More recently, the author published two articles (&lt;a href=&#34;https://scweiss.blogspot.com/2020/03/can-trade-explain-covid-19-cases.html&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; and &lt;a href=&#34;https://scweiss.blogspot.com/2020/03/can-trade-with-china-predict-covid-19.html&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;) in which he finds and visualizes an association between number of people that tested positive for COVID-19 in a country and imports from China. In addition he finds that there are particular industries that are particularly correlated with COVID-19 rates.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-risk-heat-maps-with-location-data-apache-arrow-markov-chain-modeling-and-r-shiny&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Risk Heat Maps with Location Data, Apache Arrow, Markov Chain Modeling, and R Shiny&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Risk%20Heat%20Maps%20with%20Location%20Data,%20Apache%20Arrow,%20Markov%20Chain%20Modeling,%20and%20R%20Shiny.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Filip Stachura, this &lt;a href=&#34;https://appsilon.com/covid-19-risk-heat-maps-with-location-data-apache-arrow-markov-chain-modeling-and-r-shiny/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; describes Appsilon’s solution (CoronaRank) submitted to the recent Pandemic Response Hackathon. Inspired by Google’s PageRank, it uses geolocation data in the Apache Parquet format from Veraset for effective exposure risk assessment using Markov Chain modeling.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-tracker-indonesia&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Tracker Indonesia&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Tracker%20Indonesia.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Dio Ariadi from DataWizArt, this &lt;a href=&#34;https://www.datawizart.com/covid-19-tracker-indonesia.html&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; shows some very nice plots on regional variation in COVID-19 cases and deaths in Indonesia, with very neatly integrated R code for each plot.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-projections-using-machine-learning&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Projections Using Machine Learning&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Projections%20Using%20Machine%20Learning%20by%20Youyang%20Gu.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Developed by Youyang Gu, this &lt;a href=&#34;https://covid19-projections.com/&#34; target=&#34;_blank&#34;&gt;website&lt;/a&gt; presents an intuitive model that builds machine learning techniques on top of a classic infectious disease model to make COVID-19 infections and deaths projections for the US, all 50 US states, and more than 60 countries.&lt;/p&gt;
&lt;p&gt;The code can be found on &lt;a href=&#34;https://github.com/youyanggu/covid19_projections&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-in-belgium-is-it-over-yet&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 in Belgium: is it over yet?&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/2020-05-22-covid-19-in-belgium-is-it-over-yet_files/Belgian_Hospitalisations_COVID-19_1.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by myself in collaboration with Prof. Niko Speybroeck and Angel Rosas-Aguirre, this &lt;a href=&#34;https://statsandr.com/blog/covid-19-in-belgium-is-it-over-yet/&#34;&gt;article&lt;/a&gt; shows the evolution of the number of hospital admissions and the number of confirmed cases in Belgium (by province and at the national level).&lt;/p&gt;
&lt;p&gt;Code of the plots is available in the article.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-cases-by-ethnicity&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Cases by Ethnicity&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/05202020Tommi.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Tommi Suvitaival, this &lt;a href=&#34;https://tommi-s.com/COVID-19/US_Cases_by_Ethnicity/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; investigates Covid19 deaths as a function of the percentage of a county’s population that comes from various ethnic backgrounds.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;tennessee-covid-19-update&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Tennessee COVID-19 Update&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/05202020Tennessee.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Prof. James M. Luther, this &lt;a href=&#34;https://rpubs.com/JMLuther/614989&#34; target=&#34;_blank&#34;&gt;document&lt;/a&gt; presents a summary of the daily data for the state of Tennessee. The author uses an interactive map, a seven-day rolling average of various metrics, and facet charts.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;simulating-coronavirus-outbreak-in-cities-with-origin-destination-matrix-and-seir-model&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Simulating Coronavirus Outbreak in Cities with Origin-Destination Matrix and SEIR Model&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/05202020Tokyo.JPG&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Yihui Fan, this &lt;a href=&#34;https://www.databentobox.com/2020/03/28/covid19_city_sim_seir/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; lays out a step-by-step guide on simulating and visualising the spread of Coronavirus in the Greater Tokyo Area based on Origin-Destination Matrix and SEIR Model.&lt;/p&gt;
&lt;p&gt;Another &lt;a href=&#34;https://www.databentobox.com/2020/03/08/covid19_sim_tokyo/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; from the same author focuses on the effectiveness of reducing population movement in managing Coronavirus outbreak.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-population-mobility---how-has-human-mobility-changed-under-the-covid-19-pandemic&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 Population Mobility - How has human mobility changed under the COVID-19 Pandemic?&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID-19%20Population%20Mobility.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Kelsey E. Gonzalez, this &lt;a href=&#34;https://arizona.figshare.com/articles/How_has_human_mobility_changed_under_the_COVID-19_Pandemic_/12374810/1?file=22805480&#34; target=&#34;_blank&#34;&gt;visualization&lt;/a&gt; aims to understand population behavior during the COVID-19 pandemic.&lt;/p&gt;
&lt;p&gt;Data is from &lt;a href=&#34;https://www.cuebiq.com/visitation-insights-covid19/&#34; target=&#34;_blank&#34;&gt;Cuebiq&lt;/a&gt; and the code is available on &lt;a href=&#34;https://github.com/kelseygonzalez/covid_mobility&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-build-covid-19-data-driven-shiny-apps-in-5-minutes&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;How to Build COVID-19 Data-Driven Shiny Apps in 5 minutes&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/How%20to%20Build%20COVID-19%20Data-Driven%20Shiny%20Apps%20in%205mins.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Emanuele Guidotti, this &lt;a href=&#34;https://tutorial.guidotti.dev/h83h5/&#34; target=&#34;_blank&#34;&gt;tutorial&lt;/a&gt; shows how to build a simple yet complete Shiny application using the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covid19&#34;&gt;R Package COVID19&lt;/a&gt;: R Interface to COVID-19 Data Hub.&lt;/p&gt;
&lt;p&gt;In another &lt;a href=&#34;https://tutorial.guidotti.dev/jv7v8/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt;, the author explores the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covid19&#34;&gt;R package &lt;code&gt;{COVID19}&lt;/code&gt;&lt;/a&gt; in further detail.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;analyzing-data-from-covid19-r-package&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Analyzing data from COVID19 R package&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/CanovasExcessDeaths.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Pablo Cánovas, this &lt;a href=&#34;https://typethepipe.com/post/analyzing-data-covid19-r-package/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explores whether deaths from COVID19 are being reported accurately.&lt;/p&gt;
&lt;p&gt;It uses data from &lt;a href=&#34;https://www.mortality.org/&#34; target=&#34;_blank&#34;&gt;The Human Mortality Database&lt;/a&gt; and the &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covid19&#34;&gt;COVID-19 Data Hub&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;body-mass-and-risk-from-covid-19-and-influenza&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Body Mass and Risk from COVID-19 and Influenza&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/bmi-mortality-by-sex-covid19.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Prof. Radford Neal, this &lt;a href=&#34;https://radfordneal.wordpress.com/2020/04/06/body-mass-and-risk-from-covid-19-and-influenza/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; looks at data from flu-like illnesses and some preliminary Covid19 data. The author concludes that being underweight and being seriously obese are both risk factors for serious respiratory illness.&lt;/p&gt;
&lt;p&gt;More recently, the author published a series of other articles:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://radfordneal.wordpress.com/2020/04/23/the-puzzling-linearity-of-covid-19/&#34; target=&#34;_blank&#34;&gt;The Puzzling Linearity of COVID-19&lt;/a&gt; discussing the fact that for many countries, the linear plots of total cases or total deaths go up exponentially at first, and then approach a straight line that is not horizontal&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://radfordneal.wordpress.com/2020/04/30/seasonality-of-covid-19-other-coronaviruses-and-influenza/&#34; target=&#34;_blank&#34;&gt;Seasonality of COVID-19, Other Coronaviruses, and Influenza&lt;/a&gt;: this post looks at the evidence for seasonality in influenza and the common cold Coronaviruses, and to what extent one might expect COVID-19 to also be seasonal&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://radfordneal.wordpress.com/2020/05/27/critique-of-projecting-the-transmission-dynamics-of-sars-cov-2-through-the-postpandemic-period-part-1-reproducing-the-results/&#34; target=&#34;_blank&#34;&gt;Critique of “Projecting the transmission dynamics of SARS-CoV-2 through the postpandemic period”&lt;/a&gt;: this post analyzes and criticizes an earlier paper by &lt;span class=&#34;citation&#34;&gt;Kissler et al. (&lt;a href=&#34;#ref-kissler2020projecting&#34; role=&#34;doc-biblioref&#34;&gt;2020&lt;/a&gt;)&lt;/span&gt;. See also &lt;a href=&#34;https://radfordneal.wordpress.com/2020/06/17/critique-of-projecting-the-transmission-dynamics-of-sars-cov-2-through-the-postpandemic-period-part-2-proxies-for-incidence-of-coronaviruses/&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt; and &lt;a href=&#34;https://radfordneal.wordpress.com/2020/06/24/critique-of-projecting-the-transmission-dynamics-of-sars-cov-2-through-the-postpandemic-period-part-3-estimating-reproduction-numbers/&#34; target=&#34;_blank&#34;&gt;part 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;hmd-weekly-data&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;HMD – Weekly Data&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Richman.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Ronald Richman, this &lt;a href=&#34;http://ronaldrichman.co.za/2020/05/21/hmd-weekly-data/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; explores the highly improbable level of deaths currently being reported using the Human Mortality Database and its recently begun special time series of weekly death data across 13 countries.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;guest-posts-on-chris-muirs-blog&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Guest posts on Chris Muir’s blog&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Skylar.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Skylar Hara, this &lt;a href=&#34;https://cdmuir.netlify.app/post/2020-05-20-biol297-skylar-covid19/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; examines whether the incidence of Covid19 changed after the Governor of Hawaii issued a stay-at-home order.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Steinbach.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Ronja Steinbach, this &lt;a href=&#34;https://cdmuir.netlify.app/post/2020-05-19-biol297-ronja-covid19/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; gathers data on Trump or Clinton states, percentages of minorities, and median household income to answer the following questions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Does party affiliation of a state in the 2016 election have a significant impact on the incidence rate of the virus in that state?&lt;/li&gt;
&lt;li&gt;Does the proportion of the population that is minority and median household income affect the incident rate of the virus across states?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Akemi%20Santiago%20on%20COVID-19.png&#34; style=&#34;width:50.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Akemi Santiago, this &lt;a href=&#34;https://cdmuir.netlify.app/post/2020-05-21-biol297-akemi-covid19/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; shows a statistically different mortality rate between African-Americans in the United States and white Americans.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/correlation%20between%20population%20size%20and%20covid-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Masha Rutenberg, this &lt;a href=&#34;https://cdmuir.netlify.app/post/2020-05-27-biol297-masha-covid19/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; focuses on the correlation between the population of a country and the number of confirmed infections in the country.&lt;/p&gt;
&lt;p&gt;All authors are students of Prof. Chris Muir.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;an-r-view-into-epidemiology&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;An R View into Epidemiology&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Rickert.JPG&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Joseph Rickert in R Views, this &lt;a href=&#34;https://rviews.rstudio.com/2020/05/20/some-r-resources-for-epidemiology/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; tracks down R packages that help epidemiology research and shows the number of downloads in recent months for the five most popular packages.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;articles-by-rob-j-hyndman&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Articles by Rob J Hyndman&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Hyndman-Excess-death-covid19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Rob J. Hyndman, Professor of Statistics and Head of the Department of Econometrics and Business Statistics at Monash University (Australia), published a series of Covid19 related articles:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://robjhyndman.com/hyndsight/forecasting-covid19/&#34; target=&#34;_blank&#34;&gt;Forecasting COVID-19&lt;/a&gt;: this blog post does not use R, although Prof. Hyndman is an expert with it, but it does explain some of the problems with time series forecasting or other methods of forecasting&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://robjhyndman.com/hyndsight/logratios-covid19/&#34; target=&#34;_blank&#34;&gt;Why log ratios are useful for tracking COVID-19&lt;/a&gt;: this post presents the benefits of reporting log-scale graphics&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://robjhyndman.com/hyndsight/excess-deaths/&#34; target=&#34;_blank&#34;&gt;Excess deaths for 2020&lt;/a&gt;: the reported COVID19 deaths in each country are often underestimated. One way to explore the true mortality effect of the pandemic is to look at “excess deaths” — the difference between death rates this year and the same time in previous years&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://robjhyndman.com/hyndsight/seasonal-mortality-rates/&#34; target=&#34;_blank&#34;&gt;Seasonal mortality rates&lt;/a&gt;: this post shows how the weekly mortality data published by the Human Mortality Database can be used to explore seasonality in mortality rates. Mortality rates are known to be seasonal due to temperatures and other weather-related effects&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;turkey-vs.-germany-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Turkey vs. Germany: COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Turkey%20vs.%20Germany-%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Selcuk Disci from DataGeeek, this &lt;a href=&#34;https://datageeek.wordpress.com/2020/05/31/turkey-vs-germany-covid-19/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; compares efforts by Turkey and Germany to control the pandemic, and tests several regression models.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;hands-on-how-to-build-an-interactive-map-in-r-shiny-an-example-for-the-covid-19-dashboard&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Hands-on: How to build an interactive map in R-Shiny: An example for the COVID-19 Dashboard&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID19%20Analytics.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Sangmeng, this &lt;a href=&#34;https://r-posts.com/hands-on-how-to-build-an-interactive-map-in-r-shiny-an-example-for-the-covid-19-dashboard/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; explains how to build an interactive dashboard with Shiny with an example for the &lt;a href=&#34;https://sangmeng.shinyapps.io/COVID19/&#34; target=&#34;_blank&#34;&gt;COVID-19 Dashboard&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;modelling-covid-19-in-morocco&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Modelling COVID-19 in Morocco&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/SIR-Model-2019-nCoV-Morocco.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Zakariah Gassasse, this &lt;a href=&#34;https://www.internationalmorocco.com/modelling-covid-19-in-morocco/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; presents data on cases of Covid19 in Morocco and applies the &lt;a href=&#34;https://statsandr.com/blog/covid-19-in-belgium/&#34;&gt;SIR model&lt;/a&gt; to the data.&lt;/p&gt;
&lt;p&gt;More recently, the author published two other articles. The first &lt;a href=&#34;https://www.linkedin.com/pulse/100-days-covid-19-arima-zakariah-gassasse/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; provides a short-term forecast of COVID-19 cases and deaths in Morocco by using simple but effective time-series analyses. The second &lt;a href=&#34;https://www.linkedin.com/pulse/part-3-mapping-outbreak-zakariah-gassasse/&#34; target=&#34;_blank&#34;&gt;article&lt;/a&gt; maps the outbreak to see which regions are suffering the most.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;sir-models-with-kermack-and-mckendrick&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;SIR models with Kermack and McKendrick&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/SIR%20models%20with%20Kermack%20and%20McKendrick.gif&#34; style=&#34;width:80.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Pierre Jacob, this &lt;a href=&#34;https://statisfaction.wordpress.com/2020/04/09/sir-models-with-kermack-and-mckendrick/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; is mostly a retrospective look at the origins of the much-used SIR model.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;johns-hopkins-covid-19-data-and-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Johns Hopkins Covid-19 Data and R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Johns%20Hopkins%20Covid-19%20Data%20and%20R,%20Part%20II,%20data.table%20functions%20and%20graphics,%20plus%20R-Naught.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Steve Miller, these blog posts (&lt;a href=&#34;https://st5.ning.com/topology/rest/1.0/file/get/4791290285?profile=original&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; &amp;amp; &lt;a href=&#34;https://st1.ning.com/topology/rest/1.0/file/get/5518972265?profile=original&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;) showcase the handling of daily data of cases/deaths from Covid-19 in the U.S. published by Johns Hopkins University, and visualize moving averages of cases and deaths.&lt;/p&gt;
&lt;p&gt;The author also published a &lt;a href=&#34;http://svmiller.com/blog/2020/03/the-covid19-initial-claims-spike-in-context-r/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; putting unemployment claims in the U.S. in perspective.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;estimating-covid-19s-r_t-in-real-time&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Estimating COVID-19’s &lt;span class=&#34;math inline&#34;&gt;\(R_t\)&lt;/span&gt; in Real-Time&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Estimating%20COVID-19&amp;#39;s%20R_t%20in%20Real-Time.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Ramnath Vaidyanathan, this &lt;a href=&#34;https://www.datacamp.com/community/tutorials/replicating-in-r-covid19&#34; target=&#34;_blank&#34;&gt;tutorial&lt;/a&gt; shows how to estimate &lt;span class=&#34;math inline&#34;&gt;\(R_t\)&lt;/span&gt;, the measure known as effective reproduction number, which is the number of people who become infected per infectious person at time &lt;span class=&#34;math inline&#34;&gt;\(t\)&lt;/span&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;from-static-to-animated-time-series-the-tidyverse-way&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;From static to animated time series: the tidyverse way&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/From%20static%20to%20animated%20time%20series-%20the%20tidyverse%20way.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Giulia Ruggeri, this &lt;a href=&#34;https://medium.com/epfl-extension-school/from-static-to-animated-time-series-the-tidyverse-way-d696eb75f2fa&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; goes through the steps necessary to create an animated COVID-19 time series plot.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;sneak-peek-new-summit-data-tool-helps-clients-visualize-us-areas-that-are-most-heavily-impacted-by-the-covid-19-virus&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Sneak peek: new Summit data tool helps clients visualize US areas that are most heavily impacted by the COVID-19 virus&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Sneak%20peek-%20new%20Summit%20data%20tool%20helps%20clients%20visualize%20US%20areas%20that%20are%20most%20heavily%20impacted%20by%20the%20COVID-19%20virus.jpg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Colby Ziegler, this &lt;a href=&#34;https://www.summitllc.us/blog/sneak-peek-new-summit-data-tool-helps-clients-visualize-us-areas-that-are-most-heavily-impacted-by-the-covid-19-virus&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; describes a tool (built primarily in R using the &lt;code&gt;{leaflet}&lt;/code&gt;, &lt;code&gt;{tidyverse}&lt;/code&gt;, and &lt;code&gt;{tigris}&lt;/code&gt; packages) tracking and displaying the total number of confirmed COVID-19 cases and deaths by U.S. county, overlaid with the locations of Certified Community Development Financial Institutions (CDFIs).&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-reproduce-financial-times-style-covid19-daily-reporting&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;How to Reproduce Financial Times Style COVID19 Daily Reporting?&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/How%20to%20Reproduce%20Financial%20Times%20Style%20COVID19%20Daily%20Reporting.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Peyman Kor, this &lt;a href=&#34;https://peymankor.netlify.app/post/ft/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows how to reproduce in R the Financial Times facet plot by country.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;what-can-tweets-about-contact-tracing-apps-tell-us-about-attitudes-towards-data-sharing-for-public-health&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;What can tweets about contact tracing apps tell us about attitudes towards data sharing for public health?&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/What%20can%20tweets%20about%20contact%20tracing%20apps%20tell%20us%20about%20attitudes%20towards%20data%20sharing%20for%20public%20health.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Holly Clarke, these 2 blog posts (&lt;a href=&#34;https://www.cdrc.ac.uk/what-can-tweets-about-contact-tracing-apps-tell-us-about-attitudes-towards-data-sharing-for-public-health/&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; &amp;amp; &lt;a href=&#34;https://www.cdrc.ac.uk/what-can-tweets-about-contact-tracing-apps-tell-us-about-attitudes-towards-data-sharing-for-public-health-part-2/&#34; target=&#34;_blank&#34;&gt;part 2&lt;/a&gt;) discuss about attitudes towards contact tracing apps to manage the spread of Covid-19 and data-sharing for public health, using tweets, text analysis and natural language processing.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;visualizing-covid-cases-in-belgium&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Visualizing COVID cases in Belgium&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/belgium_covid.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;In this &lt;a href=&#34;https://bluegreen.ai/post/covid-cases-belgium/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;, Koen Hufkens plots cases in Belgium and addresses a challenge in geo-spatial plotting.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;a-spatio-temporal-analysis-of-the-environmental-correlates-of-covid-19-incidence-in-spain&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;A spatio-temporal analysis of the environmental correlates of COVID-19 incidence in Spain&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/SUR%20models%20covid19%20antonio%20paez.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Antonio Paez and several co-authors, this &lt;a href=&#34;https://github.com/paezha/covid19-environmental-correlates#a-spatio-temporal-analysis-of-the-environmental-correlates-of-covid-19-incidence-in-spain&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; looks at weather, humidity and other factors in Spain to create a SUR model.&lt;/p&gt;
&lt;p&gt;Another &lt;a href=&#34;https://findingspress.org/article/12976&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; by Antonio Paez investigates the incidence of COVID-19 in the United States using Google Community Mobility Reports.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-analysis&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Covid-19 Analysis&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/covid19%20analysis%20Rizami%20Annuar.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Rizami Annuar, this &lt;a href=&#34;https://rizami.com/covid-19/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; compares data on cases and deaths in Malaysia to other countries, including correlations.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;a-simple-way-to-gather-all-coronavirus-related-data-with-r&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;A Simple Way to Gather all Coronavirus Related Data with R&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/A%20Simple%20Way%20to%20Gather%20all%20Coronavirus%20Related%20Data%20with%20R.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Federico Riveroll, this &lt;a href=&#34;https://medium.com/swlh/a-simple-way-to-gather-all-coronavirus-related-data-with-r-b1e7ecb74346&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; shows how to combine data on Covid19 cases, news references (such as to China) and economic indicators in R. (For Python users, see this &lt;a href=&#34;https://towardsdatascience.com/gather-all-the-coronavirus-data-with-python-19aa22167dea&#34; target=&#34;_blank&#34;&gt;version&lt;/a&gt;.)&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;australian-governments-can-choose-to-slow-the-spread-of-coronavirus-but-they-would-need-to-act-immediately&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Australian governments can choose to slow the spread of coronavirus, but they would need to act immediately&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Australian%20governments%20can%20choose%20to%20slow%20the%20spread%20of%20coronavirus,%20but%20they%20would%20need%20to%20act%20immediately.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Matt Cowgill, this &lt;a href=&#34;https://grattan.edu.au/news/australian-governments-can-choose-to-slow-the-spread-of-coronavirus-but-they-must-act-immediately/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows that Australia early on had relatively few cases, but the post argues that the country needed to act urgently. Data is from the &lt;code&gt;{gtrendsR}&lt;/code&gt; package.&lt;/p&gt;
&lt;p&gt;In a more recent &lt;a href=&#34;https://grattan.edu.au/news/why-we-wont-know-the-full-effect-of-covid-19-on-jobs-in-australia-for-at-least-another-month/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt;, using Google trends data for key words associated with unemployment, the authors trace the effects of COVID19 in Australia in the early months.&lt;/p&gt;
&lt;p&gt;In addition to these posts, a series of other posts have been published by Stephen Duckett and Brendan Coates:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/australia-should-join-new-zealand-and-shoot-for-eliminating-coronavirus/&#34; target=&#34;_blank&#34;&gt;Australia should join New Zealand and shoot for eliminating coronavirus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/is-the-covid-19-glass-half-full-or-half-empty/&#34; target=&#34;_blank&#34;&gt;Is the COVID-19 glass half full or half empty?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/australias-covid-19-are-still-growing-rapidly-our-hospitals-may-soon-hit-capacity/&#34; target=&#34;_blank&#34;&gt;Australia’s COVID-19 cases are still growing rapidly. Our hospitals may soon hit capacity&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/as-more-australians-get-covid-19-will-we-have-enough-hospital-beds/&#34; target=&#34;_blank&#34;&gt;As more Australians get COVID-19, will we have enough hospital beds?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/covid-19-our-most-vulnerable-workers-need-more-help/&#34;&gt;COVID-19: Our most vulnerable workers need more help&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://grattan.edu.au/news/as-the-covid-19-crisis-deepens-few-australians-have-much-cash-in-the-bank/&#34;&gt;As the COVID-19 crisis deepens, few Australians have much cash in the bank&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;does-covid-raise-everyones-relative-risk-of-dying-by-a-similar-amount-more-evidence&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Does Covid raise everyone’s relative risk of dying by a similar amount? More evidence&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Does%20Covid%20raise%20everyone’s%20relative%20risk%20of%20dying%20by%20a%20similar%20amount.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Prof. David Spiegelhalter (author of the great book “&lt;a href=&#34;https://dspiegel29.github.io/ArtofStatistics/&#34; target=&#34;_blank&#34;&gt;The Art of Statistics&lt;/a&gt;”), this &lt;a href=&#34;https://medium.com/wintoncentre/does-covid-raise-everyones-relative-risk-of-dying-by-a-similar-amount-more-evidence-e7d30abf6821&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; looks at relative mortality rates by age and gender, using data from the U.K.’s Office for National Statistics.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;tracking-coronavirus-building-parameterized-reports-to-analyze-changing-data-sources&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Tracking Coronavirus: Building Parameterized Reports to Analyze Changing Data Sources&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Tracking%20Coronavirus-%20Building%20Parameterized%20Reports%20to%20Analyze%20Changing%20Data%20Sources.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;In this &lt;a href=&#34;https://redoakstrategic.com/tracking-coronavirus-building-parameterized-reports-to-analyze-changing-data-sources/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt;, using Johns Hopkins data, Tyler Sanders builds a virus dashboard that can be updated each day with just the click of a button as an example of how to build parameterized reports with &lt;a href=&#34;https://statsandr.com/blog/getting-started-in-r-markdown/&#34;&gt;R Markdown&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;mapping-nz-cases-of-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Mapping NZ cases of COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Mapping%20NZ%20cases%20of%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;In this &lt;a href=&#34;https://notstatschat.rbind.io/2020/03/26/mapping-nz-cases-of-covid-19/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt;, using his own choropleth package (&lt;code&gt;{DHBins}&lt;/code&gt;) and its hexagonal bins, Thomas Lumley maps cases of COVID19 by Health Boards in New Zealand.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;visualize-the-pandemic-with-r-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Visualize the Pandemic with R #COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Visualize%20the%20Pandemic%20with%20R%20-%20COVID-19.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;In this &lt;a href=&#34;https://towardsdatascience.com/visualize-the-pandemic-with-r-covid-19-c3443de3b4e4&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt;, Xinhan Qian carries out a variety of explorations with Covid19 data, including the precipitous declines in U.S. movie box office revenue and restaurant reservations.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;exploring-the-temporal-evolution-of-covid-19-cases-in-the-united-states&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Exploring the Temporal Evolution of COVID-19 Cases in the United States&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Exploring%20the%20Temporal%20Evolution%20of%20COVID-19%20Cases%20in%20the%20United%20States.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Robert Winkelman and Colin Waltz, this &lt;a href=&#34;https://rpubs.com/rdwinkelman/covid19_us_spread_gif&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; shows clearly how to create animated plots of the spread of COVID19 infections in the United States.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;r-data-analysis-covid-19&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;R Data Analysis: COVID-19&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/covid19_new-cases_success-failure_small-multiple_v2.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published on the blog of Sharp Sight, this series of blog posts (part &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-data-analysis-covid-19-part1-data-wrangling/&#34; target=&#34;_blank&#34;&gt;1&lt;/a&gt;, &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-data-analysis-covid-19-part-2-merge-datasets/&#34; target=&#34;_blank&#34;&gt;2&lt;/a&gt;, &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-data-exploration-covid19-part3/&#34; target=&#34;_blank&#34;&gt;3&lt;/a&gt;, &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-data-visualization-covid19-part4/&#34; target=&#34;_blank&#34;&gt;4&lt;/a&gt;, &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-covid19-analysis-part5-data-issues/&#34; target=&#34;_blank&#34;&gt;5&lt;/a&gt; and &lt;a href=&#34;https://www.sharpsightlabs.com/blog/r-data-analysis-covid19-part6-successful-countries/&#34; target=&#34;_blank&#34;&gt;6&lt;/a&gt;) explain how to rename and reorder columns, standardize dates (with the &lt;code&gt;{lubridate}&lt;/code&gt; package), merge datasets, take other preparatory steps, plot with the &lt;code&gt;{ggplot2}&lt;/code&gt; package and finally, reproduce in R a plot that shows the relative progress of 16 countries in coping with the pandemic.&lt;/p&gt;
&lt;p&gt;All posts use the Johns Hopkins data and data from the company’s own collection.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ga-covid-19-reports&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;GA COVID-19 Reports&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/GA%20COVID-19%20Report.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Based on data from the GA Department of Public Health’s report, Andrew Benesh posts a daily analysis of the U.S. state Georgia’s cases, deaths, ICU usage etc.&lt;/p&gt;
&lt;p&gt;All his reports are posted on &lt;a href=&#34;https://medium.com/@andrewbenesh&#34; target=&#34;_blank&#34;&gt;Medium&lt;/a&gt; and the code is available &lt;a href=&#34;https://bitbucket.org/asb12f/covid19-ga/src/master/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;corona-in-belgium&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Corona in Belgium&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Corona%20in%20Belgium.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Published by bnosac, this &lt;a href=&#34;http://www.bnosac.be/index.php/blog/97-corona-in-belgium&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; covers the early exploration of the exponential spread of Covid19, with a focus on Belgium and the Netherlands.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;the-coronavirus-in-italy-from-the-twitters-point-of-view&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;The Coronavirus in Italy from the Twitter’s Point of View&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/The%20Coronavirus%20in%20Italy%20from%20the%20Twitter&amp;#39;s%20Point%20of%20View.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by the Kode team, these two posts (&lt;a href=&#34;http://tech.kode-datacenter.net:11000/covid19/articles/twitter-analysis-overview/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; and &lt;a href=&#34;http://tech.kode-datacenter.net:11000/covid19/articles/twitter-analysis-sentiment/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;) use text-mining techniques to analyze tweets in Italy early in the pandemic and on speeches by the Prime Minister of Italy regarding Covid19.&lt;/p&gt;
&lt;p&gt;They also published an &lt;a href=&#34;http://tech.kode-datacenter.net:10200/covid-dashboard/&#34; target=&#34;_blank&#34;&gt;interactive dashboard&lt;/a&gt; (in Italian) allowing to explore the data released daily by the &lt;a href=&#34;http://www.protezionecivile.gov.it/&#34; target=&#34;_blank&#34;&gt;Civil Protection&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;use-r-and-tidycensus-to-look-at-covid-19-risk-factors&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Use R and Tidycensus to Look at COVID-19 Risk Factors&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/Use%20R%20and%20Tidycensus%20to%20Look%20at%20COVID-19%20Risk%20Factors.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by René F. Najera, this &lt;a href=&#34;https://medium.com/rebel-public-health/use-r-and-tidycensus-to-look-at-covid-19-risk-factors-88485aa31ddd&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; uses US census data to identify “overcrowded” areas and considers them in terms of Covid19 risk.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;animating-u.s.-covid-19-hotspots-over-time&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Animating U.S. COVID-19 hotspots over time&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/us_covid19_rolling_cases.jpg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Written by Nathan Chaney, this &lt;a href=&#34;https://www.nathanchaney.com/2020/10/09/animating-u-s-covid-19-hotspots-over-time/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; presents an animated map of the 7-day rolling average of new COVID-19 cases in US. Code for the animated map is available directly at the end of the post.&lt;/p&gt;
&lt;p&gt;This post is an extension of his previous post on &lt;a href=&#34;http://www.nathanchaney.com/2020/09/29/visualization-of-covid-19-cases-in-arkansas/&#34; target=&#34;_blank&#34;&gt;visualizing COVID-19 in Arkansas&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;understanding-covid19-in-connecticut.-it-takes-a-town&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Understanding COVID19 in Connecticut. It takes a town&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/top-r-resources-on-coronavirus_files/COVID19-in-Connecticut.gif&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Based on these two &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#animating-u.s.-covid-19-hotspots-over-time&#34;&gt;posts&lt;/a&gt; by Nathan Chaney, Chuck Powell shows in his &lt;a href=&#34;https://ibecav.netlify.app/post/understanding-covid19-in-connecticut-it-takes-a-town/&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; how to create an animated map of 7-day rolling average of new COVID19 cases per 100,000 in Connecticut (by town).&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;data&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Data&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/CSSEGISandData/COVID-19&#34; target=&#34;_blank&#34;&gt;2019 Novel Coronavirus COVID-19 (2019-nCoV) Data Repository by Johns Hopkins CSSE&lt;/a&gt;: this dataset is used by many resources mentioned in this article and has become the gold standard for COVID-19 modeling&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://covid19.who.int/&#34; target=&#34;_blank&#34;&gt;World Health Organization (WHO)&lt;/a&gt;. See also their accompanying &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#who-covid-19-explorer&#34;&gt;Shiny app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.kaggle.com/allen-institute-for-ai/CORD-19-research-challenge&#34; target=&#34;_blank&#34;&gt;COVID-19 Open Research Dataset Challenge (CORD-19)&lt;/a&gt; (via Kaggle)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.kaggle.com/sudalairajkumar/novel-corona-virus-2019-dataset&#34; target=&#34;_blank&#34;&gt;Novel Corona Virus 2019 Dataset: Day level information on Covid-19 affected cases&lt;/a&gt; (via Kaggle)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.ecdc.europa.eu/en/publications-data/download-todays-data-geographic-distribution-covid-19-cases-worldwide&#34; target=&#34;_blank&#34;&gt;COVID-19 Data from the European Centers for Disease Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://covidtracking.com/&#34; target=&#34;_blank&#34;&gt;The COVID Tracking Project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://joachim-gassen.github.io/2020/03/tidying-the-new-johns-hopkins-covid-19-datasests/&#34; target=&#34;_blank&#34;&gt;Tidying the John Hopkins Covid-19 data to long format and merging some World Bank data&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://towardsdatascience.com/a-short-review-of-covid-19-data-sources-ba7f7aa1c342&#34; target=&#34;_blank&#34;&gt;A Short Review of COVID-19 Data Sources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;COVID-19 datasets by &lt;a href=&#34;https://coronavirus-disasterresponse.hub.arcgis.com/datasets/51b7109ab2cc49e29783babad27d64a2&#34; target=&#34;_blank&#34;&gt;esri&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/beoutbreakprepared/nCoV2019/tree/master/latest_data&#34; target=&#34;_blank&#34;&gt;beoutbreakprepared/nCoV2019&lt;/a&gt;: one of the very few non-aggregated dataset available online. Such a dataset of individual-level information on patients with confirmed COVID-19, (including their travel history, location, symptoms, reported onset and confirmation dates and basic demographics) is important to understand, among others, transmissibility, risk of geographic spread, routes of transmission and risk factors for infection&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://towardsdatascience.com/fighting-the-covid-19-all-the-datasets-and-data-efforts-in-one-place-4d6aeb0157ab&#34; target=&#34;_blank&#34;&gt;Fighting the Covid-19: All the datasets and data efforts in one place&lt;/a&gt;: this post gathers many relevant datasets and data efforts&lt;/li&gt;
&lt;li&gt;A &lt;a href=&#34;https://sourceful.co.uk/doc/533/public-covid-19-data-table-lower-tier-regional-bre&#34; target=&#34;_blank&#34;&gt;Google Sheet&lt;/a&gt; which helps with tracking of the local lockdowns in the UK&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;other-lists-or-collections-of-resources&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Other lists or collections of resources&lt;/h1&gt;
&lt;p&gt;With so many great resources about the Coronavirus, other people also collected and organized similar lists.&lt;a href=&#34;#fn3&#34; class=&#34;footnote-ref&#34; id=&#34;fnref3&#34;&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt; Below some collections I have been fortunate enough to discover:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://connorrothschild.shinyapps.io/covid-posts/&#34; target=&#34;_blank&#34;&gt;COVID-19 Blog Post Directory&lt;/a&gt;: developed by Connor Rothschild and Rees Morrison, this Shiny app lets users interactively search a collection of over 400 posts by primary topic, post title, date, and whether the post uses a particular mathematical technique or data source. See also the accompanying &lt;a href=&#34;https://www.connorrothschild.com/post/covid-posts/&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://idea.rpi.edu/covid-19-resources&#34; target=&#34;_blank&#34;&gt;COVID-19 Modelling Resources, Data and Challenges&lt;/a&gt; by IDEA (not only R)&lt;/li&gt;
&lt;li&gt;GitHub repo &lt;a href=&#34;https://github.com/mine-cetinkaya-rundel/covid19-r&#34; target=&#34;_blank&#34;&gt;covid19-r&lt;/a&gt; by Mine Cetinkaya-Rundel (only R)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://simplystatistics.org/posts/2020-04-29-amplifying-people-i-trust-on-covid-19/&#34; target=&#34;_blank&#34;&gt;Amplifying people I trust on COVID-19&lt;/a&gt;: written by Jeff Leek from Simply Statistics, this article is a collection of trustworthy people and experts who share good information about the COVID-19 pandemic&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://rviews.rstudio.com/2020/04/07/some-select-covid-19-modeling-resources/&#34; target=&#34;_blank&#34;&gt;Some Select COVID-19 Modeling Resources&lt;/a&gt; and &lt;a href=&#34;https://rviews.rstudio.com/2020/06/03/more-select-covid-19-resources/&#34; target=&#34;_blank&#34;&gt;More Select COVID-19 Resources&lt;/a&gt; by Joseph Rickert, assembling dashboards, Shiny apps, blog posts, packages, datasets, videos and conference proceedings that pertain to the Covid19 pandemic&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://milano-r.github.io/erum2020-covidr-contest/index.html&#34; target=&#34;_blank&#34;&gt;CovidR Contest&lt;/a&gt;: launched by the European R users meeting (eRum), this contest is an open-source contest and pre-conference event, featuring any work done with R around the topic of the COVID-19 pandemic&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://ocean.sagepub.com/blog/tools-and-tech/turning-covid-19-into-a-data-visualization-exercise-for-your-students&#34; target=&#34;_blank&#34;&gt;Turning COVID-19 into a data visualization exercise for your students&lt;/a&gt;: written by Daniela Duca, this blog post presents a variety of methods to visualize data, drawing on several blog posts, Shiny apps and dashboards&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://outbreak.info/&#34; target=&#34;_blank&#34;&gt;Outbreak.info&lt;/a&gt; is an open source tool built by Scripps Research that standardizes and aggregates COVID-19 data. The interface aggregates journal articles, preprints, datasets, clinical trials, protocols, and other resources in one place, standardizing metadata and applying NLP to make these sources searchable and more accessible. The interactive data dashboards allow for quick comparison of countries, states, counties, and metro areas, and includes an API and R Package for researchers who want to access all of the raw data&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I hope that, in addition to my collection, these rich lists done by others will give you enough background materials to analyze the outbreak of COVID-19 on your own (or at least some ideas)!&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;non-english-resources&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Non-english resources&lt;/h1&gt;
&lt;p&gt;This section may be of interested to only a limited number or people, but still, there are great resources in languages other than English. See a collection of them below listed by language:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Japanese:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://covid-2019.live/&#34; target=&#34;_blank&#34;&gt;Coronavirus infection bulletin&lt;/a&gt;: original version of this &lt;a href=&#34;https://statsandr.com/blog/top-r-resources-on-covid-19-coronavirus/#covid-19-bulletin-board&#34;&gt;dashboard&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;German:
&lt;ul&gt;
&lt;li&gt;Developed by Prof. Dr. Helmut Küchenhoff, this &lt;a href=&#34;https://corona.stat.uni-muenchen.de/&#34; target=&#34;_blank&#34;&gt;CoronaMaps&lt;/a&gt; presents the situation of the Coronavirus in the world, in Europe and in Germany via a map and a table&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Spanish:
&lt;ul&gt;
&lt;li&gt;GitHub repository with official government data and R code used to extract it, see &lt;a href=&#34;https://github.com/rubenfcasal/COVID-19&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; and &lt;a href=&#34;https://github.com/datadista/datasets/tree/master/COVID%2019&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://commonsense.shinyapps.io/CovidChile/&#34; target=&#34;_blank&#34;&gt;COVID-19 en Chile&lt;/a&gt;: this Shiny app shows the accumulated confirmed contagion cases and provides an estimate of the growth rate for each municipality&lt;/li&gt;
&lt;li&gt;Developed by Que Oferton, this &lt;a href=&#34;https://queoferton.shinyapps.io/covid19/_w_b59da639/&#34; target=&#34;_blank&#34;&gt;Shiny app&lt;/a&gt; provides an overview of the 2019 Novel Coronavirus COVID-19 epidemic in Central America, including statistics, forecast, SIR and SEIR models. The data and dashboard are refreshed on a daily basis&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;French:
&lt;ul&gt;
&lt;li&gt;Written by Arthur Charpentier, this &lt;a href=&#34;https://freakonometrics.hypotheses.org/60845&#34; target=&#34;_blank&#34;&gt;blog post&lt;/a&gt; shows how to quantify excess mortality using french mortality data&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find these R resources on the COVID-19 Coronavirus useful. Feel free to let me know in the comments if I missed one.&lt;/p&gt;
&lt;p&gt;A special thanks to Rees Morrison for his tremendous work on collecting and organizing several articles, which greatly helped in improving the section about blog posts. Read his articles (&lt;a href=&#34;https://medium.com/@rees_32356/blog-posts-about-covid19-that-use-r-c10e4a96fdf9&#34; target=&#34;_blank&#34;&gt;part 1&lt;/a&gt; and &lt;a href=&#34;https://medium.com/@rees_32356/covid19-related-blog-posts-and-the-r-packages-they-use-f0b82a4d07eb&#34; target=&#34;_blank&#34;&gt;2&lt;/a&gt;) presenting a descriptive analysis of all the posts collected.&lt;/p&gt;
&lt;p&gt;Although I have carefully read all resources, inclusion on the list does not mean that I endorse the findings. Moreover, some of the analyses, code, dashboards, packages or datasets might be out of date, so these should not be viewed, by default, as current findings. If you are the author of one of these resources, do not hesitate to &lt;a href=&#34;https://statsandr.com/contact/&#34;&gt;contact me&lt;/a&gt; if you see any inconsistency or if you would like to remove it from this article.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level1 unnumbered&#34;&gt;
&lt;h1&gt;References&lt;/h1&gt;
&lt;div id=&#34;refs&#34; class=&#34;references csl-bib-body hanging-indent&#34;&gt;
&lt;div id=&#34;ref-de2020phased&#34; class=&#34;csl-entry&#34;&gt;
de Vlas, Sake J, and Luc E Coffeng. 2020. &lt;span&gt;“A Phased Lift of Control: A Practical Strategy to Achieve Herd Immunity Against Covid-19 at the Country Level.”&lt;/span&gt; &lt;em&gt;medRxiv&lt;/em&gt;.
&lt;/div&gt;
&lt;div id=&#34;ref-kissler2020projecting&#34; class=&#34;csl-entry&#34;&gt;
Kissler, Stephen M, Christine Tedijanto, Edward Goldstein, Yonatan H Grad, and Marc Lipsitch. 2020. &lt;span&gt;“Projecting the Transmission Dynamics of SARS-CoV-2 Through the Postpandemic Period.”&lt;/span&gt; &lt;em&gt;Science&lt;/em&gt; 368 (6493): 860–68.
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;footnotes footnotes-end-of-document&#34;&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li id=&#34;fn1&#34;&gt;&lt;p&gt;The package has also been the subject of a &lt;a href=&#34;https://doi.org/10.1101/2020.02.25.20027433&#34; target=&#34;_blank&#34;&gt;preprint&lt;/a&gt;.&lt;a href=&#34;#fnref1&#34; class=&#34;footnote-back&#34;&gt;↩︎&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li id=&#34;fn2&#34;&gt;&lt;p&gt;See more information about this epidemiological model in this &lt;a href=&#34;https://rpubs.com/choisy/sir&#34; target=&#34;_blank&#34;&gt;post&lt;/a&gt; by Marc Choisy.&lt;a href=&#34;#fnref2&#34; class=&#34;footnote-back&#34;&gt;↩︎&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li id=&#34;fn3&#34;&gt;&lt;p&gt;Note that unlike my list, collections by others may include resources on COVID-19 using other tools than R.&lt;a href=&#34;#fnref3&#34; class=&#34;footnote-back&#34;&gt;↩︎&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>A Shiny app for inferential statistics by hand</title>
      <link>https://statsandr.com/blog/a-shiny-app-for-inferential-statistics-by-hand/</link>
      <pubDate>Wed, 15 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/a-shiny-app-for-inferential-statistics-by-hand/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/a-shiny-app-for-inferential-statistics_files/Screenshot%202020-02-04%20at%2011.36.38.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Statistics is divided into four main branches:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Descriptive statistics&lt;/li&gt;
&lt;li&gt;Inferential statistics&lt;/li&gt;
&lt;li&gt;Predictive analysis&lt;/li&gt;
&lt;li&gt;Exploratory analysis&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Descriptive statistics provide a summary of the data; it helps explaining the data in a concise way without losing too much information. Data can be summarized numerically or graphically. See &lt;a href=&#34;https://statsandr.com/blog/descriptive-statistics-by-hand/&#34;&gt;descriptive statistics by hand&lt;/a&gt; or &lt;a href=&#34;https://statsandr.com/blog/descriptive-statistics-in-r/&#34;&gt;in R&lt;/a&gt; to learn more about this branch of statistics.&lt;/p&gt;
&lt;p&gt;The branch of predictive analysis aims at predicting a dependent variable based on one or several independent variables. Depending on the type of data to be predicted, it often encompasses methods such as &lt;a href=&#34;https://statsandr.com/blog/multiple-linear-regression-made-simple/&#34;&gt;linear regression&lt;/a&gt; or classification.&lt;/p&gt;
&lt;p&gt;Exploratory analyses focus on using graphical approaches to delve into the data and identify the relationships that exist between the different variables in the dataset. They are therefore more akin to data visualization.&lt;/p&gt;
&lt;p&gt;Inferential statistics uses a random sample of data taken from a population to make inferences, i.e., to draw conclusions about the population (see the &lt;a href=&#34;https://statsandr.com/blog/what-is-the-difference-between-population-and-sample/&#34;&gt;difference between population and sample&lt;/a&gt;). In other words, information from the sample is used to make generalizations about the parameter of interest in the population.&lt;/p&gt;
&lt;p&gt;The two major tools in inferential statistics are:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;confidence intervals, and&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://statsandr.com/blog/hypothesis-test-by-hand/&#34;&gt;hypothesis tests&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Here is a Shiny app which helps you to use these two tools:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-201/&#34; target=&#34;_blank&#34;&gt;Statistics-201&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This Shiny app focuses on confidence intervals and &lt;a href=&#34;https://statsandr.com/blog/hypothesis-test-by-hand/&#34;&gt;hypothesis tests&lt;/a&gt; for:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;1 and 2 means (with unpaired and paired samples)&lt;/li&gt;
&lt;li&gt;1 and 2 proportions&lt;/li&gt;
&lt;li&gt;1 and 2 variances&lt;/li&gt;
&lt;/ul&gt;
&lt;div id=&#34;how-to-use-this-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use this app?&lt;/h1&gt;
&lt;p&gt;Follow these steps:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Open the app via this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-201/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Choose the parameter(s) you want to do inference for (i.e., mean(s), proportion(s) or variance(s))&lt;/li&gt;
&lt;li&gt;Write your data in Sample. Observations are separated by a comma and the decimal is a point&lt;/li&gt;
&lt;li&gt;Set the null and alternative hypothesis&lt;/li&gt;
&lt;li&gt;Select the significance level (most of the time &lt;span class=&#34;math inline&#34;&gt;\(\alpha = 0.05\)&lt;/span&gt;)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In the results panel (on the right side or below depending on the size of your screen), you will see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a recap of your sample together with some appropriate descriptive statistics&lt;/li&gt;
&lt;li&gt;the confidence interval&lt;/li&gt;
&lt;li&gt;the hypothesis test&lt;/li&gt;
&lt;li&gt;the interpretation&lt;/li&gt;
&lt;li&gt;and an illustration of the hypothesis test&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;All formulas, steps and computations to arrive at the final results are also provided.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;See the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/statistics-201&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note that the link may not work if the app has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find this app useful to do inferential statistics and in particular confidence interval and hypothesis testing by hand.&lt;/p&gt;
&lt;p&gt;If you need to learn more about the structure of a hypothesis test by hand, see this &lt;a href=&#34;https://statsandr.com/blog/hypothesis-test-by-hand/&#34;&gt;article&lt;/a&gt;. See also this &lt;a href=&#34;https://statsandr.com/blog/what-statistical-test-should-i-do/&#34;&gt;flowchart&lt;/a&gt; to have an overview of the most common statistical tests.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>A Shiny app for simple linear regression by hand and in R</title>
      <link>https://statsandr.com/blog/a-shiny-app-for-simple-linear-regression-by-hand-and-in-r/</link>
      <pubDate>Wed, 15 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/a-shiny-app-for-simple-linear-regression-by-hand-and-in-r/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/a-shiny-app-for-simple-linear-regression_files/Screenshot%202020-02-04%20at%2011.45.09.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Simple linear regression is a statistical method to summarize and study relationships between two variables. When more than two variables are of interest, it is referred as multiple linear regression. See this article on &lt;a href=&#34;https://statsandr.com/blog/multiple-linear-regression-made-simple/&#34;&gt;linear regression&lt;/a&gt; for more details.&lt;/p&gt;
&lt;p&gt;In this article, we focus only on a Shiny app which allows to perform simple linear regression by hand and in R:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-202/&#34; target=&#34;_blank&#34;&gt;Statistics-202&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div id=&#34;how-to-use-this-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use this app?&lt;/h1&gt;
&lt;p&gt;Follow these steps:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Open the app via this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-202/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Enter your data in the x and y fields. The x field corresponds to the independent variable, while the y field corresponds to the dependent variable&lt;/li&gt;
&lt;li&gt;If you do not want to display the confidence interval around the regression line, uncheck the checkbox under Plot&lt;/li&gt;
&lt;li&gt;Change the x and y-axis labels for the regression plot if needed&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In the results panel (on the right side or below depending on the size of your screen), you will see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a recap of your dataset together with some appropriate descriptive statistics&lt;/li&gt;
&lt;li&gt;the estimates &lt;span class=&#34;math inline&#34;&gt;\(\beta_0\)&lt;/span&gt;, &lt;span class=&#34;math inline&#34;&gt;\(\beta_1\)&lt;/span&gt; and the regression model computed by hand&lt;/li&gt;
&lt;li&gt;the results of the model computed in R&lt;/li&gt;
&lt;li&gt;the regression plot with some key measures&lt;/li&gt;
&lt;li&gt;the interpretations&lt;/li&gt;
&lt;li&gt;and the assumptions to check the validity of the model&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;All formulas, steps and computations to arrive at the final results are also provided.&lt;/p&gt;
&lt;p&gt;Note that although the assumptions are displayed, it is your responsibility to check them to assess the validity of the linear model.&lt;/p&gt;
&lt;p&gt;Last but not least, you can download a report of the results (in HTML) by clicking on the Download button, and you can choose whether you want to include the R code or not.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;See the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/statistics-202&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note that the link may not work if the app has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;For further details about what is linear regression and when it is used, please see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;this &lt;a href=&#34;https://statsandr.com/blog/multiple-linear-regression-made-simple/&#34;&gt;post&lt;/a&gt;, and&lt;/li&gt;
&lt;li&gt;the numerous resources on the topic available in textbooks and online.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find this app useful to do simple linear regression by hand and in R.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>A practical guide on optimal asset allocation</title>
      <link>https://statsandr.com/blog/practical-guide-on-optimal-asset-allocation/</link>
      <pubDate>Tue, 07 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/practical-guide-on-optimal-asset-allocation/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/optimal-asset-allocation_files/Screenshot%202020-02-04%20at%2010.36.03.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE: Due to the limitation in terms of maximum number of Shiny apps that can be published on the free shinyapps.io plan, the Shiny app presented below has been unpublished. However, the code can be found on &lt;a href=&#34;https://github.com/AntoineSoetewey/optimal-asset-allocation&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;div id=&#34;introduction&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Introduction&lt;/h1&gt;
&lt;p&gt;In his book &lt;em&gt;A Random Walk down Wall Street&lt;/em&gt;, Burton G. Malkiel advises readers of an optimal asset allocation depending on age. As an amateur investor, I thought it would be useful to develop a Shiny app which depicts his advice for other interested investors. Here is the link to the app:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/optimal-asset-allocation/&#34; target=&#34;_blank&#34;&gt;Optimal asset allocation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-use-this-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use this app?&lt;/h1&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Open the app via this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/optimal-asset-allocation/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Set your age under &lt;strong&gt;How old are you?&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Indicate how much you are willing to invest&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;On the right panel (or below depending on the size of your screen) you will see a table and a barplot. The table includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the different type of assets which represent the different allocations&lt;/li&gt;
&lt;li&gt;the most common tickers for each type of asset&lt;/li&gt;
&lt;li&gt;the optimal percentage for each asset&lt;/li&gt;
&lt;li&gt;the optimal amount for each asset&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In the table, the optimal percentage depends on your age (the older you are, the more conservative your portfolio), while the optimal amount depends on your age and the amount you are willing to invest.&lt;/p&gt;
&lt;p&gt;The barplot displays the optimal weight (so the optimal percentage of your portfolio) for each type of asset: stocks, bonds, real estate and cash. This is just a visualization of the column “Optimal percentage” displayed in the table above.&lt;/p&gt;
&lt;p&gt;It is also possible to compare your portfolio with the optimal portfolio, as recommended by the author. For this comparison, click on the tab “Compare with your portfolio” above &lt;strong&gt;How old are you?&lt;/strong&gt;. In this tab:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Again, indicate your age&lt;/li&gt;
&lt;li&gt;Then indicate your portfolio’s value for each asset (if you do not own a specific asset, leave it equal to 0)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;On the right panel (or below depending on the size of your screen) you will see your portfolio’s total amount and a barplot comparing your portfolio and the optimal portfolio according to your age. This visualization will instantly give you a clear overview of what type of asset is overrepresented and underrepresented in your current portfolio compared the the optimal one. This will allow you to easily see how to rebalance your assets in accordance to what the author suggests.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;Here is the entire code (or see the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/optimal-asset-allocation&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;) in case you would like to enhance it.&lt;/p&gt;
&lt;script src=&#34;https://gist.github.com/AntoineSoetewey/7785129a8b55ae9f9affaad2f0377690.js&#34;&gt;&lt;/script&gt;
&lt;p&gt;&lt;em&gt;Note that the link may not work if the app has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Disclosure: Note that this practical guide on asset allocation is based on the book A Random Walk down Wall Street by Burton G. Malkiel. This application does not include investment advice or recommendations, nor a financial analysis. This application is intended for information only and you invest at your own risks. I cannot be held liable for any decision made based on the information contained in this application, nor for its use by third parties.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find this app useful to quickly replicate the optimal asset allocation suggested by Burton G. Malkiel in his book &lt;em&gt;A Random Walk down Wall Street&lt;/em&gt;. If you want to have more information about this investment strategy, I suggest reading his book.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Draw a word cloud with a R Shiny app</title>
      <link>https://statsandr.com/blog/draw-a-word-cloud-with-a-shiny-app/</link>
      <pubDate>Tue, 07 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/draw-a-word-cloud-with-a-shiny-app/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/draw-a-word-cloud-thanks-to-a-shiny-app_files/Screenshot%202020-02-04%20at%2011.03.29.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE: Due to the limitation in terms of maximum number of Shiny apps that can be published on the free shinyapps.io plan, the Shiny app presented below has been unpublished. However, the code can be found on &lt;a href=&#34;https://github.com/AntoineSoetewey/word-cloud&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Below a Shiny app to help you draw a word cloud:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/word-cloud/&#34; target=&#34;_blank&#34;&gt;Word cloud&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Word clouds are particularly useful as part of text mining analyses. Moreover, it is also useful to analyze string and character variables for any datasets (see the &lt;a href=&#34;https://statsandr.com/blog/data-types-in-r/&#34;&gt;different data types in R&lt;/a&gt;).&lt;/p&gt;
&lt;div id=&#34;how-to-use-this-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use this app?&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;In &lt;strong&gt;Word source&lt;/strong&gt; you can see two examples of word clouds with preloaded texts. If you want to use your own file, choose the option “Upload a file”&lt;/li&gt;
&lt;li&gt;When uploading a file, make sure to upload a .csv or .txt file&lt;/li&gt;
&lt;li&gt;If it is a .csv file, there should be only one column containing all words or sentences (see example files: &lt;a href=&#34;https://www.antoinesoetewey.com/files/ihaveadream.csv&#34;&gt;example.csv&lt;/a&gt; and &lt;a href=&#34;https://www.antoinesoetewey.com/files/ihaveadream.txt&#34;&gt;example.txt&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Choose the language of the text. Stop words in the chosen language will be automatically removed&lt;/li&gt;
&lt;li&gt;Numbers and punctuations will be automatically removed as well, regardless of the language&lt;/li&gt;
&lt;li&gt;You can remove specific words by specifying them after having clicked on “Remove specific words?”. Indicate one word per line&lt;/li&gt;
&lt;li&gt;Change the default options in &lt;strong&gt;Maximum number of words&lt;/strong&gt; and &lt;strong&gt;Background color&lt;/strong&gt; if needed&lt;/li&gt;
&lt;li&gt;If you need to display this word cloud in your analyses, you can simply take a screenshot and include it in your document&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;Here is the entire code (or see the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/word-cloud&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;) in case you would like to enhance it. See an example on how to use this app after the embedded code.&lt;/p&gt;
&lt;script src=&#34;https://gist.github.com/AntoineSoetewey/0a5827f531915103e8114da3c44a07fc.js&#34;&gt;&lt;/script&gt;
&lt;p&gt;&lt;em&gt;Note that the link may not work if the app has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find this app useful to draw word clouds of your texts.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>How to embed a Shiny app in blogdown?</title>
      <link>https://statsandr.com/blog/how-to-embed-a-shiny-app-in-blogdown/</link>
      <pubDate>Tue, 07 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/how-to-embed-a-shiny-app-in-blogdown/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/how-to-embed-a-shiny-app-in-a-r-markdown-document_files/shiny-app-in-blogdown.jpeg&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;div id=&#34;step-by-step-guide&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Step-by-step guide&lt;/h1&gt;
&lt;p&gt;If you have developed and deployed a Shiny app and would like to embed it in blogdown, follow these steps:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;create a new post as usual&lt;/li&gt;
&lt;li&gt;add &lt;code&gt;output: html_document&lt;/code&gt; if it is not already included in the YAML metadata&lt;/li&gt;
&lt;li&gt;insert the following HTML code in the body of the post:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;iframe height=&amp;quot;800&amp;quot; width=&amp;quot;100%&amp;quot; frameborder=&amp;quot;no&amp;quot; src=&amp;quot;https://antoinesoetewey.shinyapps.io/statistics-201/&amp;quot;&amp;gt; &amp;lt;/iframe&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You should change the URL with the URL of your deployed Shiny app (after &lt;code&gt;src=&lt;/code&gt;, do not forget that the URL should start with &lt;code&gt;http://&lt;/code&gt; or &lt;code&gt;https://&lt;/code&gt; and should be surrounded by &lt;code&gt;&#34;&lt;/code&gt;). Moreover, you can modify the height, the width and include or not a frame border with the corresponding tags.&lt;/p&gt;
&lt;p&gt;Here is an example of the result with one of my Shiny app (&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-201/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt; to the app):&lt;/p&gt;
&lt;iframe height=&#34;800&#34; width=&#34;100%&#34; frameborder=&#34;no&#34; src=&#34;https://antoinesoetewey.shinyapps.io/statistics-201/&#34;&gt;
&lt;/iframe&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note that the app may not work if it has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;Here is the entire &lt;code&gt;.Rmd&lt;/code&gt; code in case you would like to use it for your own website:&lt;/p&gt;
&lt;script src=&#34;https://gist.github.com/AntoineSoetewey/d8c357439e6e23341ed4321d910d9181.js&#34;&gt;&lt;/script&gt;
&lt;p&gt;If you encounter an issue, try loading the following packages in the body of your new post: &lt;code&gt;shiny&lt;/code&gt;, &lt;code&gt;widgetframe&lt;/code&gt; (you can load a package with the command &lt;code&gt;library(widgetframe)&lt;/code&gt;). If one of the package is not installed yet, you can do it with the command &lt;code&gt;install.packages(&#34;widgetframe&#34;)&lt;/code&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope this article helped you to embed a Shiny app in your blogdown website.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>A guide on how to read statistical tables</title>
      <link>https://statsandr.com/blog/a-guide-on-how-to-read-statistical-tables/</link>
      <pubDate>Mon, 06 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://statsandr.com/blog/a-guide-on-how-to-read-statistical-tables/</guid>
      <description>


&lt;p&gt;&lt;img src=&#34;https://statsandr.com/blog/a-guide-on-how-to-read-statistics-table_files/Probability-distributions-statsandr.com.png&#34; style=&#34;width:100.0%&#34; /&gt;&lt;/p&gt;
&lt;p&gt;Below a Shiny app to help you read the main statistical tables:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-101/&#34; target=&#34;_blank&#34;&gt;Statistics-101&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This Shiny app helps you to compute probabilities for the main probability distributions.&lt;/p&gt;
&lt;div id=&#34;how-to-use-this-app&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to use this app?&lt;/h1&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Open the app via this &lt;a href=&#34;https://antoinesoetewey.shinyapps.io/statistics-101/&#34; target=&#34;_blank&#34;&gt;link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Choose the distribution&lt;/li&gt;
&lt;li&gt;Set the parameter(s) of the distribution (the parameters depend of course on the chosen distribution)&lt;/li&gt;
&lt;li&gt;Select whether you want to find the lower tail, upper tail or an interval&lt;/li&gt;
&lt;li&gt;Choose the value of x&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;On the right panel (or below depending on the size of your screen) you will see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a recap of the data you just entered&lt;/li&gt;
&lt;li&gt;the numerical solution (i.e., the probability)&lt;/li&gt;
&lt;li&gt;a visualization of the solution&lt;/li&gt;
&lt;li&gt;the probability density function together with the mean, the standard deviation and the variance&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;example&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Example&lt;/h1&gt;
&lt;p&gt;Here is an example with the most common distribution: the &lt;strong&gt;&lt;a href=&#34;https://statsandr.com/blog/do-my-data-follow-a-normal-distribution-a-note-on-the-most-widely-used-distribution-and-how-to-test-for-normality-in-r/&#34;&gt;normal distribution&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Suppose the following problem: The cost of weekly maintenance and repair of a business has been observed over a long period of time and turns out to be distributed according to a normal distribution with an average of 402€ and a standard deviation of 22€. Having set a budget of 439€ for next week, what is the probability that the cost exceeds this budget?&lt;/p&gt;
&lt;p&gt;To solve this problem, follow these steps in the app:&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;Choose the normal distribution, as it is said that the costs follow a normal distribution&lt;/li&gt;
&lt;li&gt;Set the mean &lt;span class=&#34;math inline&#34;&gt;\(\mu\)&lt;/span&gt; equal to 402, as it is said that the average cost is 402€&lt;/li&gt;
&lt;li&gt;In the statement, the standard deviation is given (and not the variance) so select “Standard deviation &lt;span class=&#34;math inline&#34;&gt;\(\sigma\)&lt;/span&gt;” and set it equal to 22&lt;/li&gt;
&lt;li&gt;We are asked what is the probability the the cost &lt;strong&gt;exceeds&lt;/strong&gt; the budget. Therefore, we look for the probability &lt;strong&gt;above&lt;/strong&gt; a certain x, so select upper tail &lt;span class=&#34;math inline&#34;&gt;\(P(X &amp;gt; x)\)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;We are now asked to find the probability that the cost exceeds 439€, so set x equal to 439&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The solution panel gives a recap of the data:&lt;/p&gt;
&lt;p&gt;&lt;span class=&#34;math display&#34;&gt;\[X ∼ \mathcal{N}(\mu = 402, \sigma^2 = 484)\]&lt;/span&gt; where &lt;span class=&#34;math inline&#34;&gt;\(484 = 22^2\)&lt;/span&gt;, and the solution: &lt;span class=&#34;math display&#34;&gt;\[P(X &amp;gt; 439) = P(Z &amp;gt; 1.68) = 0.0463\]&lt;/span&gt; where &lt;span class=&#34;math inline&#34;&gt;\(Z = \frac{X - \mu}{\sigma} = \frac{439 - 402}{22} = 1.68\)&lt;/span&gt; and &lt;span class=&#34;math inline&#34;&gt;\(Z ∼ \mathcal{N}(\mu = 0, \sigma^2 = 1)\)&lt;/span&gt; (known as the standard normal distribution). Thus, the probability that the cost next week exceeds the budget of 439€ is 0.0463, or 4.63%.&lt;/p&gt;
&lt;p&gt;It also shows the normal distribution (with &lt;span class=&#34;math inline&#34;&gt;\(\mu = 402\)&lt;/span&gt; and &lt;span class=&#34;math inline&#34;&gt;\(\sigma^2 = 484\)&lt;/span&gt;) with the shaded area corresponding to the probability we are looking for. It then gives some details about the density function, the mean, the standard deviation and the variance.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;code&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;p&gt;See the last version on &lt;a href=&#34;https://github.com/AntoineSoetewey/statistics-101&#34; target=&#34;_blank&#34;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Note that the link may not work if the app has hit the monthly usage limit. Try again later if that is the case.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;p&gt;I hope you will find this app useful to compute probabilities for the main distributions.&lt;/p&gt;
&lt;p&gt;As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
  </channel>
</rss>