Skip to content

Commit d3d9676

Browse files
committed
fix: doubled code block tags in README
1 parent 265fbe3 commit d3d9676

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

README.Rmd

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,18 @@ ggplot2::theme_set(ggplot2::theme_bw())
1616

1717
# Delphi Epidata R client
1818

19-
2019
<!-- badges: start -->
2120
[![License: MIT][mit-image]][mit-url] [![Github Actions][github-actions-image]][github-actions-url]
2221
[![codecov](https://codecov.io/gh/dsweber2/epidatr/branch/dev/graph/badge.svg?token=jVHL9eHZNZ)](https://app.codecov.io/gh/dsweber2/epidatr)
2322
<!-- badges: end -->
2423

25-
2624
The [Delphi Epidatr package](https://cmu-delphi.github.io/epidatr/) is an R front-end for the [Delphi Epidata API](https://cmu-delphi.github.io/delphi-epidata/), which provides real-time access to epidemiological surveillance data for influenza, COVID-19, and other diseases for the USA at various geographical resolutions, both from official government sources such as the [Center for Disease Control (CDC)](https://www.cdc.gov/datastatistics/index.html) and [Google Trends](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html) and private partners such as [Facebook](https://delphi.cmu.edu/blog/2020/08/26/covid-19-symptom-surveys-through-facebook/) and [Change Healthcare](https://www.changehealthcare.com/). It is built and maintained by the Carnegie Mellon University [Delphi research group](https://delphi.cmu.edu/).
2725

2826
This package is designed to streamline the downloading and usage of data from the [Delphi Epidata
2927
API](https://cmu-delphi.github.io/delphi-epidata/). It provides a simple R interface to the API, including functions for downloading data, parsing the results, and converting the data into a tidy format. The API stores a historical record of all data, including corrections and updates, which is particularly useful for accurately backtesting forecasting models. We also provide packages for downstream data processing ([epiprocess](https://github.com/cmu-delphi/epiprocess)) and modeling ([epipredict](https://github.com/cmu-delphi/epipredict)).
3028

3129
## Usage
30+
3231
You can find detailed docs here:
3332

3433
```{r}
@@ -62,24 +61,22 @@ ggplot(epidata, aes(x = time_value, y = value)) +
6261

6362

6463
## Installation
64+
6565
You can install the stable version of this package from CRAN:
6666

67-
``` r
6867
```R
6968
install.packages("epidatr")
7069
pak::pkg_install("epidatr")
7170
renv::install("epidatr")
7271
```
73-
```
7472

7573
Or if you want the development version, install from GitHub:
7674

77-
```R
7875
```R
7976
# Install the dev version using `pak` or `remotes`
8077
pak::pkg_install("cmu-delphi/epidatr")
8178
remotes::install_github("cmu-delphi/epidatr")
82-
```
79+
renv::install("cmu-delphi/epidatr")
8380
```
8481

8582
### API Keys

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,19 @@ ggplot(epidata, aes(x = time_value, y = value)) +
9494
You can install the stable version of this package from CRAN:
9595

9696
``` r
97-
```R
9897
install.packages("epidatr")
9998
pak::pkg_install("epidatr")
10099
renv::install("epidatr")
101100
```
102101

102+
Or if you want the development version, install from GitHub:
103103

104-
Or if you want the development version, install from GitHub:
105-
106-
```R
107-
```R
108-
# Install the dev version using `pak` or `remotes`
109-
pak::pkg_install("cmu-delphi/epidatr")
110-
remotes::install_github("cmu-delphi/epidatr")
111-
112-
\`\`\`
104+
``` r
105+
# Install the dev version using `pak` or `remotes`
106+
pak::pkg_install("cmu-delphi/epidatr")
107+
remotes::install_github("cmu-delphi/epidatr")
108+
renv::install("cmu-delphi/epidatr")
109+
```
113110

114111
### API Keys
115112

-112 Bytes
Loading

0 commit comments

Comments
 (0)