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/functions.R
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
#' Download the Pediatric Drug Safety database
2
2
#'
3
-
#' Download the database published in Giangreco et al. 2022. Warning, the size of the uncompressed 'sqlite' file is close to 0.9GB or 900 MB. Use with caution
3
+
#' Download the database published in Giangreco et al. 2022. This function will prompt to download the database, so the cache directory will be identified and the database will be downloaded to it only after consent. Warning, the size of the uncompressed 'sqlite' file is close to 0.9GB or 900 MB. Use with caution.
4
4
#'
5
5
#' @param method The method to download the sqlite database. See \code{download.file}
6
6
#' @param quiet Whether to download quietly. See \code{download.file}
Copy file name to clipboardExpand all lines: README.Rmd
+6-4
Original file line number
Diff line number
Diff line change
@@ -15,23 +15,27 @@ output: github_document
15
15
knitr::opts_chunk$set(echo = TRUE)
16
16
```
17
17
18
+
This R data package contains observation, summary, and model-level data from pediatric drug safety research developed by Nicholas Giangreco for his PhD dissertation in the Tatonetti lab at Columbia University.
19
+
18
20
# Installation
19
21
22
+
**The database is downloaded after consent is given when using the package. Installing the package will not download the database, but it will make it easier to download and connect to the database from your R session.**
23
+
20
24
```{r,eval=FALSE}
21
25
install.packages('kidsides')
22
26
remotes::install_github("ngiangre/kidsides")
23
27
```
24
28
25
29
# Summary
26
30
27
-
This R data package contains observation, summary, and model-level data from pediatric drug safety research developed by Nicholas Giangreco for his PhD dissertation in the Tatonetti lab at Columbia University.
28
-
29
31
The database is comprised of 17 tables including a table with descriptions of the fields in each table. The main table, `ade_nichd`, contains quantitative data from nearly 500,000 pediatric drug safety signals across 7 child development stages spanning from birth through late adolescence (21 years of age).
30
32
31
33
The database was created using the methods and analyses in the references.
32
34
33
35
This data resource can be used under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license agreement.
34
36
37
+
**See the `Overview` vignette for more details on the data and the online portal**
0 commit comments