11# ' Fetch CDC page hits
22# '
3- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/cdc.html
3+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/cdc.html>
44# '
55# ' @examples
66# ' \dontrun{
@@ -640,10 +640,10 @@ covidcast_meta <- function() {
640640# ' time_values = epirange(20200601, 20200801)
641641# ' ) %>% fetch()
642642# ' }
643- # ' @param data_source string. The data source to query (see:
643+ # ' @param source string. The data source to query (see:
644644# ' <https://cmu-delphi.github.io/delphi-epidata/api/covidcast_signals.html>).
645645# ' @param signals string. The signals to query from a specific source (see:
646- # ' <https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals .html>).
646+ # ' <https://cmu-delphi.github.io/delphi-epidata/api/covidcast_signals .html>).
647647# ' @param geo_type string. The geographic resolution of the data (see:
648648# ' <https://cmu-delphi.github.io/delphi-epidata/api/covidcast_geography.html>).
649649# ' @param time_type string. The temporal resolution of the data (either "day" or
@@ -685,7 +685,7 @@ covidcast <- function(
685685 missing(time_values ) || missing(geo_values )
686686 ) {
687687 stop(
688- " `data_source `, `signals`, `time_type`, `geo_type`, `time_values`, and `geo_value` are all required"
688+ " `source `, `signals`, `time_type`, `geo_type`, `time_values`, and `geo_value` are all required"
689689 )
690690 }
691691
@@ -748,7 +748,7 @@ covidcast <- function(
748748
749749# ' Fetch Delphi's ILINet forecasts
750750# '
751- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/delphi.html
751+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/delphi.html>
752752# '
753753# ' @examples
754754# ' \dontrun{
@@ -778,7 +778,7 @@ delphi <- function(system, epiweek) {
778778
779779# ' Fetch Delphi's PAHO Dengue nowcast
780780# '
781- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/dengue_nowcast.html
781+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/dengue_nowcast.html>
782782# '
783783# ' TODO: what are valid locations here?
784784# ' @examples
@@ -813,7 +813,7 @@ dengue_nowcast <- function(locations, epiweeks) {
813813# ' Fetch Delphi's digital surveillance sensors for dengue in PAHO member
814814# ' countries
815815# '
816- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/dengue_sensors.html
816+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/dengue_sensors.html>
817817# '
818818# ' TODO: what are valid locations and names?
819819# ' @examples
@@ -970,7 +970,7 @@ flusurv <- function(locations, epiweeks, issues = NULL, lag = NULL) {
970970
971971# ' Fetch FluView virological data from clinical labs
972972# '
973- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/fluview_clinical.html
973+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/fluview_clinical.html>
974974# '
975975# ' @examples
976976# ' \dontrun{
@@ -1024,7 +1024,7 @@ fluview_clinical <- function(regions, epiweeks, issues = NULL, lag = NULL) {
10241024
10251025# ' Fetch FluView metadata
10261026# '
1027- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/fluview_meta.html
1027+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/fluview_meta.html>
10281028# ' @examples
10291029# ' \dontrun{
10301030# ' fluview_meta() %>% fetch()
@@ -1159,7 +1159,7 @@ gft <- function(locations, epiweeks) {
11591159
11601160# ' Fetch Google Health Trends data
11611161# '
1162- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/ght.html
1162+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/ght.html>
11631163# '
11641164# ' TODO: find a non-trivial query
11651165# ' @examples
@@ -1203,7 +1203,7 @@ pvt_ght <- function(auth, locations, epiweeks, query) {
12031203
12041204# ' Fetch KCDC data
12051205# '
1206- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/kcdc_ili.html
1206+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/kcdc_ili.html>
12071207# '
12081208# ' TODO: find a non-trivial region
12091209# ' @examples
@@ -1251,7 +1251,7 @@ kcdc_ili <- function(regions, epiweeks, issues = NULL, lag = NULL) {
12511251
12521252# ' Fetch NoroSTAT metadata
12531253# '
1254- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/meta_norostat.html
1254+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/meta_norostat.html>
12551255# '
12561256# ' @examples
12571257# ' \dontrun{
@@ -1269,7 +1269,7 @@ pvt_meta_norostat <- function(auth) {
12691269
12701270# ' Fetch api metadata
12711271# '
1272- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/meta.html
1272+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/meta.html>
12731273# '
12741274# ' @return [`epidata_call`]
12751275# '
@@ -1371,7 +1371,7 @@ nidss_flu <- function(regions, epiweeks, issues = NULL, lag = NULL) {
13711371
13721372# ' Fetch NoroSTAT data (point data, no min/max)
13731373# '
1374- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/norostat.html
1374+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/norostat.html>
13751375# '
13761376# ' @examples
13771377# ' \dontrun{
@@ -1446,7 +1446,7 @@ nowcast <- function(locations, epiweeks) {
14461446
14471447# ' Fetch PAHO Dengue
14481448# '
1449- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/paho_dengue.html
1449+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/paho_dengue.html>
14501450# '
14511451# ' @examples
14521452# ' \dontrun{
@@ -1495,7 +1495,7 @@ paho_dengue <- function(regions, epiweeks, issues = NULL, lag = NULL) {
14951495
14961496# ' Fetch Quidel COVID-19 and influenza testing data
14971497# '
1498- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/quidel.html
1498+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/quidel.html>
14991499# '
15001500# ' @examples
15011501# ' \dontrun{
@@ -1534,7 +1534,7 @@ pvt_quidel <- function(auth, locations, epiweeks) {
15341534
15351535# ' Fetch Delphi's digital surveillance sensors
15361536# '
1537- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/sensors.html
1537+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/sensors.html>
15381538# '
15391539# ' @examples
15401540# ' \dontrun{
@@ -1578,7 +1578,7 @@ pvt_sensors <- function(auth, names, locations, epiweeks) {
15781578
15791579# ' Fetch HealthTweets data
15801580# '
1581- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/twitter.html
1581+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/twitter.html>
15821582# '
15831583# ' @examples
15841584# ' \dontrun{
@@ -1628,7 +1628,7 @@ pvt_twitter <- function(auth, locations, dates = NULL, epiweeks = NULL) {
16281628
16291629# ' Fetch Wikipedia access data
16301630# '
1631- # ' API docs: https://cmu-delphi.github.io/delphi-epidata/api/wiki.html
1631+ # ' API docs: < https://cmu-delphi.github.io/delphi-epidata/api/wiki.html>
16321632# '
16331633# ' @examples
16341634# ' \dontrun{
0 commit comments