Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Authors@R: c(
person("Rho Inc.", role = "cph"))
Maintainer: Jeremy Wildfire <jeremy_wildfire@rhoworld.com>
Description: A framework for evaluation of clinical trial safety. Users can interactively explore their data using the 'Shiny' application or create standalone 'htmlwidget' charts. Interactive charts are built using 'd3.js' and 'webcharts.js' 'JavaScript' libraries.
URL: https://github.com/ASA-DIA-InteractiveSafetyGraphics/safetyGraphics
BugReports: https://github.com/ASA-DIA-InteractiveSafetyGraphics/safetyGraphics/issues
Depends: R (>= 3.5)
License: MIT + file LICENSE
Encoding: UTF-8
Expand Down
1 change: 1 addition & 0 deletions R/checkColumnSetting.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#' #invalid column fails
#' safetyGraphics:::checkColumnSetting(key=list("filters",3,"value_col"),
#' settings=testSettings, adlbc)
#' @keywords internal

checkColumnSetting <- function(key, settings, data){
stopifnot(typeof(key)=="list",typeof(settings)=="list")
Expand Down
3 changes: 2 additions & 1 deletion R/checkFieldSettings.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#' @importFrom stringr str_split
#' @importFrom magrittr "%>%"
#' @importFrom purrr map
#'
#' @keywords internal


checkFieldSettings <- function(fieldKey, settings, data){

Expand Down
1 change: 1 addition & 0 deletions R/checkNumericColumns.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#' #fails since groups aren't specified by default
#' safetyGraphics:::checkSettingProvided(key=list("groups",1,"value_col"),settings=testSettings)
#'
#' @keywords internal

checkNumericColumns <- function(key, settings, data){
stopifnot(typeof(key)=="list",typeof(settings)=="list")
Expand Down
2 changes: 1 addition & 1 deletion R/checkSettingProvided.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#' #fails since groups aren't specified by default
#' safetyGraphics:::checkSettingProvided(key=list("groups",1,"value_col"),
#' settings=testSettings)
#'
#' @keywords internal

checkSettingProvided <- function(key, settings){
stopifnot(typeof(key)=="list",typeof(settings)=="list")
Expand Down
2 changes: 1 addition & 1 deletion R/compare_cols.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#' # match == TRUE
#' safetyGraphics:::compare_cols(names(adlbc),
#' safetyGraphics:::getRequiredColumns(standard="ADaM"))
#'
#' @keywords internal

compare_cols<-function(data_cols, standard_cols){
compare_summary <- list()
Expand Down
1 change: 1 addition & 0 deletions R/getRequiredColumns.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#' safetyGraphics:::getRequiredColumns(standard="SDTM")
#'
#' @importFrom rlang .data
#' @keywords internal

getRequiredColumns<-function(standard,chart="eDish"){
stopifnot(
Expand Down
2 changes: 1 addition & 1 deletion R/getSettingKeys.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#' matchLists=TRUE)
#'
#' @importFrom stringr str_detect
#'
#' @keywords internal



Expand Down
1 change: 1 addition & 0 deletions R/getSettingValue.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#' safetyGraphics:::getSettingValue(list("measure_values","ALP"),testSettings)
#' safetyGraphics:::getSettingValue(list("NotASetting"),testSettings) #returns NULL
#'
#' @keywords internal

getSettingValue <- function(key,settings){
stopifnot(typeof(settings)=="list")
Expand Down
2 changes: 2 additions & 0 deletions R/textKeysToList.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#'
#' #list(list("id_col"),list("measure_col","label"))
#' safetyGraphics:::textKeysToList(c("id_col","measure_col--label"))
#'
#' @keywords internal


textKeysToList <- function(textKeys){
Expand Down
1 change: 1 addition & 0 deletions man/checkColumnSetting.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/checkFieldSettings.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/checkNumericColumns.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/checkSettingProvided.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/compare_cols.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/getRequiredColumns.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/getSettingKeys.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/getSettingValue.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions man/textKeysToList.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.