-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
46 lines (27 loc) · 845 Bytes
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
print_yaml <- function(filename) {
cat("```yaml", readLines(filename), "```", sep = "\n")
}
```
# covid19today
covid19today is a library that extracts today's covid-19 data of the world.
## Installation
The package can be installed with the `devtools` package
```r
devtools::install_github("sorrychoe/covid19today")
```
## Usage
You can use `get_data()` function to gather today's world covid19 data
```r
data <- get_data(country)
# country: covid-19 data by country
# continent: covid-19 data by continent
```
## License
[MIT](https://choosealicense.com/licenses/mit/)
## Getting help
If you encounter a clear bug, please file an issue with a minimal reproducible example on GitHub.