Skip to content

Commit

Permalink
fix usage of := walrus operator which was no longer exported by lates…
Browse files Browse the repository at this point in the history
…t rlang

move james to thrid author to better reflect contribution to overall package

added glue as dependency as it is nor required by rlang usage of interpolation of programmatic names
  • Loading branch information
certara-smouksassi committed Jan 14, 2024
1 parent cc34567 commit fc2fdbb
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 17 deletions.
9 changes: 5 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ Authors@R: c(
role = c("aut", "cre"),comment = c(ORCID = "https://orcid.org/0000-0002-7152-6654")),
person("Dean", "Attali", email = "[email protected]",
role = c("aut")),
person("James", "Craig", email = "[email protected]",
role = c("aut"), comment = "implemented bookmarking and created pkgdown website"),
person("Benjamin", "Rich", email = "[email protected]",
role = c("aut"), comment = "provided summary stats tables tab code"),
role = c("aut"), comment = "provided summary stats tables table1 tab code"),
person("Michael", "Sachs", email = "[email protected]",
role = c("aut"), comment = "provided ggkm code"),
person("James", "Craig", email = "[email protected]",
role = c("aut"), comment = "implemented bookmarking and created pkgdown website")
role = c("aut"), comment = "provided ggkm initial code")
)
Description: Quickly and easily perform exploratory data analysis by uploading your
data as a 'csv' file. Start generating insights using 'ggplot2' plots and
Expand All @@ -27,6 +27,7 @@ Imports:
data.table,
DT,
Formula,
glue,
GGally (>= 2.1.0),
ggbeeswarm,
ggh4x,
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export(stat_kmticks)
import(tidyr)
importFrom(ggbeeswarm,position_beeswarm)
importFrom(ggbeeswarm,position_quasirandom)
importFrom(rlang,)
importFrom(rlang,.data)
importFrom(rlang,sym)
importFrom(scales,identity_trans)
Expand Down
1 change: 0 additions & 1 deletion R/ggcontinuousexpdist.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#' @importFrom rlang `:=`
#' @importFrom rlang .data
#' @importFrom rlang sym
#' @import tidyr
Expand Down
1 change: 0 additions & 1 deletion R/ggkmrisktable.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#' @importFrom rlang `:=`
#' @importFrom rlang .data
#' @importFrom survival survfit
#' @importFrom survival Surv
Expand Down
5 changes: 4 additions & 1 deletion R/gglogisticexpdist.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#' @importFrom rlang `:=`
#' @importFrom rlang .data
#' @importFrom rlang sym
#' @import tidyr
#' @importFrom stats median
#' @importFrom stats quantile
#'
#'

utils::globalVariables(c(':='))

summary_df <- function(x,y, probs = c(0.25,0.75,0.90,0.10)) {
N = Ntot = prob = NULL
Expand Down
7 changes: 4 additions & 3 deletions man/ggcontinuousexpdist.Rd

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

16 changes: 10 additions & 6 deletions man/gglogisticexpdist.Rd

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

0 comments on commit fc2fdbb

Please sign in to comment.