Skip to content

Commit

Permalink
remove relative links
Browse files Browse the repository at this point in the history
closing #659
  • Loading branch information
sbfnk committed May 8, 2024
1 parent cf195a3 commit 21f7b39
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 29 deletions.
16 changes: 8 additions & 8 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ Uncertainty is propagated from all inputs into the final parameter estimates, he

`{EpiNow2}` provides three models:

* [`estimate_infections()`](reference/estimate_infections.html): Reconstruct cases by date of infection from reported cases.
* `estimate_infections()`: Reconstruct cases by date of infection from reported cases.

* [`estimate_secondary()`](reference/estimate_secondary.html): Estimate the relationship between primary and secondary observations, for example, deaths (secondary) based on hospital admissions (primary), or bed occupancy (secondary) based on hospital admissions (primary).
* `estimate_secondary()`: Estimate the relationship between primary and secondary observations, for example, deaths (secondary) based on hospital admissions (primary), or bed occupancy (secondary) based on hospital admissions (primary).

* [`estimate_truncation()`](reference/estimate_truncation.html): Estimate a truncation distribution from multiple snapshots of the same data source over time. For more flexibility, check out the [`{epinowcast}`](https://package.epinowcast.org/) package.
* `estimate_truncation()`: Estimate a truncation distribution from multiple snapshots of the same data source over time. For more flexibility, check out the [`{epinowcast}`](https://package.epinowcast.org/) package.


The default model in `estimate_infections()` uses a non-stationary Gaussian process to estimate the time-varying reproduction number and infer infections. Other options, which generally reduce runtimes at the cost of the granularity of estimates or real-time performance, include:
Expand All @@ -52,17 +52,17 @@ The default model in `estimate_infections()` uses a non-stationary Gaussian proc
* A deconvolution/back-calculation method for inferring infections, followed with calculating the time-varying reproduction number.
* Adjustment for the remaining susceptible population beyond the forecast horizon.

The documentation for [`estimate_infections`](reference/estimate_infections.html) provides examples of the implementation of the different options available.
The documentation for `estimate_infections` provides examples of the implementation of the different options available.

`{EpiNow2}` is designed to be used via a single function call to two functions:

* [`epinow()`](reference/epinow.html): Estimate Rt and cases by date of infection and forecast these infections into the future.
* `epinow()`: Estimate Rt and cases by date of infection and forecast these infections into the future.

* [`regional_epinow()`](reference/regional_epinow.html): Efficiently run `epinow()` across multiple regions in an efficient manner.
* `regional_epinow()`: Efficiently run `epinow()` across multiple regions in an efficient manner.

These two functions call [`estimate_infections()`](reference/estimate_infections.html), which works to reconstruct cases by date of infection from reported cases.
These two functions call `estimate_infections()`, which works to reconstruct cases by date of infection from reported cases.

For more details on using each function see the [function documentation](reference/index.html).
For more details on using each function corresponding function documentation.

</details>

Expand Down
40 changes: 19 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ Models provided

`{EpiNow2}` provides three models:

- [`estimate_infections()`](reference/estimate_infections.html):
Reconstruct cases by date of infection from reported cases.
- `estimate_infections()`: Reconstruct cases by date of infection from
reported cases.

- [`estimate_secondary()`](reference/estimate_secondary.html): Estimate
the relationship between primary and secondary observations, for
example, deaths (secondary) based on hospital admissions (primary), or
bed occupancy (secondary) based on hospital admissions (primary).
- `estimate_secondary()`: Estimate the relationship between primary and
secondary observations, for example, deaths (secondary) based on
hospital admissions (primary), or bed occupancy (secondary) based on
hospital admissions (primary).

- [`estimate_truncation()`](reference/estimate_truncation.html):
Estimate a truncation distribution from multiple snapshots of the same
data source over time. For more flexibility, check out the
- `estimate_truncation()`: Estimate a truncation distribution from
multiple snapshots of the same data source over time. For more
flexibility, check out the
[`{epinowcast}`](https://package.epinowcast.org/) package.

The default model in `estimate_infections()` uses a non-stationary
Expand All @@ -90,25 +90,23 @@ cost of the granularity of estimates or real-time performance, include:
- Adjustment for the remaining susceptible population beyond the
forecast horizon.

The documentation for
[`estimate_infections`](reference/estimate_infections.html) provides
examples of the implementation of the different options available.
The documentation for `estimate_infections` provides examples of the
implementation of the different options available.

`{EpiNow2}` is designed to be used via a single function call to two
functions:

- [`epinow()`](reference/epinow.html): Estimate Rt and cases by date of
infection and forecast these infections into the future.
- `epinow()`: Estimate Rt and cases by date of infection and forecast
these infections into the future.

- [`regional_epinow()`](reference/regional_epinow.html): Efficiently run
`epinow()` across multiple regions in an efficient manner.
- `regional_epinow()`: Efficiently run `epinow()` across multiple
regions in an efficient manner.

These two functions call
[`estimate_infections()`](reference/estimate_infections.html), which
works to reconstruct cases by date of infection from reported cases.
These two functions call `estimate_infections()`, which works to
reconstruct cases by date of infection from reported cases.

For more details on using each function see the [function
documentation](reference/index.html).
For more details on using each function corresponding function
documentation.

</details>

Expand Down

0 comments on commit 21f7b39

Please sign in to comment.