You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: R/data.R
+122-1
Original file line number
Diff line number
Diff line change
@@ -67,8 +67,129 @@
67
67
#' * \href{https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/doctor-visits.html}{From the COVIDcast Doctor Visits API}: The signal `percent_cli` is taken directly from the API without changes.
68
68
#' * \href{https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html}{From the COVIDcast Epidata API}: `case_rate_7d_av` is taken directly from the JHU CSSE \href{https://github.com/CSSEGISandData/COVID-19}{COVID-19 GitHub repository} without changes. The 7-day average signals are computed by Delphi by calculating moving averages of the preceding 7 days, so the signal for June 7 is the average of the underlying data for June 1 through 7, inclusive.
69
69
#' * Furthermore, the data is a subset of the full dataset, the signal names slightly altered, and formatted into a tibble.
70
+
#'
71
+
#' @export
70
72
"archive_cases_dv_subset"
71
73
74
+
#' Detect whether `pkgload` is unregistering a package (with some unlikely false positives)
75
+
#'
76
+
#' More precisely, detects the presence of a call to an `unregister` or
77
+
#' `unregister_namespace` function from any package in the indicated part of the
78
+
#' function call stack.
79
+
#'
80
+
#' @param parent_n optional, single non-`NA` non-negative integer; how many
81
+
#' "parent"/"ancestor" calls should we skip inspecting? Default of `0L` will
82
+
#' check everything up to, but not including the call to this function. If
83
+
#' building wrappers or utilities around this function it may be useful to use
84
+
#' this default to ignore those wrappers, especially if they might trigger
85
+
#' false positives now or in some future version of this function with a looser
#' Subset of JHU daily cases from California and Florida
74
195
#'
@@ -120,4 +241,4 @@
120
241
#' Modifications:
121
242
#' * \href{https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html}{From the COVIDcast Epidata API}: These signals are taken directly from the JHU CSSE \href{https://github.com/CSSEGISandData/COVID-19}{COVID-19 GitHub repository} without changes. The 7-day average signals are computed by Delphi by calculating moving averages of the preceding 7 days, so the signal for June 7 is the average of the underlying data for June 1 through 7, inclusive.
122
243
#' * Furthermore, the data has been limited to a very small number of rows, the signal names slightly altered, and formatted into a tibble.
0 commit comments