diff options
author | hannajankowski <hkj@yorku.ca> | 2024-05-30 10:55:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 10:55:44 -0400 |
commit | 23c4ef6fdcdd595515fd4fce510a5f311627ce22 (patch) | |
tree | ffcc4c988b1ce1fc8997d71cf6e76b6471992069 | |
parent | 9cf25e707fbd49d357cf295ad62f83d805c59c2c (diff) |
Add files via upload
-rw-r--r-- | inst/app/templates/about.html | 27 | ||||
-rw-r--r-- | inst/app/templates/tabs.html | 4 |
2 files changed, 29 insertions, 2 deletions
diff --git a/inst/app/templates/about.html b/inst/app/templates/about.html new file mode 100644 index 0000000..d0b81e7 --- /dev/null +++ b/inst/app/templates/about.html @@ -0,0 +1,27 @@ +<h1>Welcome to the Rnaught web application</h1> +<p> + Rnaught is an R package and web application for estimating the + <a href="https://en.wikipedia.org/wiki/Basic_reproduction_number" target="_blank">basic reproduction number</a> + of infectious diseases. For information about using this application, view the + <span class="fw-bold text-primary">Help <span class="glyphicon glyphicon-question-sign"></span></span> tab. + To learn more about the package, visit the online + <a href="https://MI2YorkU.github.io/Rnaught" target="_blank">documentation</a> or + <a href="https://github.com/MI2YorkU/Rnaught" target="_blank">GitHub</a> repository. + Technical details about the estimators featured in this project can be found in the reference + <a href="https://doi.org/10.1371/journal.pone.0269306" target="_blank">article</a>. +</p> + +<h4>What is the basic reproduction number?</h4> +<p> + The basic reproduction number, denoted <em>R<sub>0</sub></em>, is defined as the expected number of infections caused by a + single infectious individual when introduced into a totally susceptible population. It assumes that all individuals in a given population are susceptible to the disease, + and that no preventive measures (such as lockdowns or vaccinations) have been enforced. It is a useful + indicator of the transmissibility of an infectious disease during the early stages of its spread and detection. +</p> +<p> + If <em>R<sub>0</sub></em> < 1, then the disease will eventually die out. On the other hand, if + <em>R<sub>0</sub></em> > 1, the disease will spread (the higher the <em>R<sub>0</sub></em>, the faster this will happen). Due to uncertainty of known data about the disease, it is difficult to + determine <em>R<sub>0</sub></em> precisely. + Therefore, many estimation methods exist, each based on different assumptions and yielding different estimates. It is the + responsibility of users to employ the most appropriate estimator (or suite of estimators) given the situation at hand. +</p> diff --git a/inst/app/templates/tabs.html b/inst/app/templates/tabs.html index bd07df9..22985f9 100644 --- a/inst/app/templates/tabs.html +++ b/inst/app/templates/tabs.html @@ -3,10 +3,10 @@ About <span class="glyphicon glyphicon-info-sign"></span> </a> <a class="nav-link rounded-0" data-bs-toggle="pill" href="#data"> - Data <span class="glyphicon glyphicon-list-alt"></span> + Upload Data <span class="glyphicon glyphicon-list-alt"></span> </a> <a class="nav-link rounded-0" data-bs-toggle="pill" href="#estimators"> - Estimators <span class="glyphicon glyphicon-random"></span> + Select and Compute Estimators <span class="glyphicon glyphicon-random"></span> </a> <a class="nav-link rounded-0" data-bs-toggle="pill" href="#help"> Help <span class="glyphicon glyphicon-question-sign"></span> |