Skip to content

Commit 38a1ab5

Browse files
committed
Removed '@export' from 'ds.boxPlotGG_numeric' and 'ds.boxPlotGG_table'
1 parent 5ac4528 commit 38a1ab5

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

NAMESPACE

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ export(ds.asMatrix)
1212
export(ds.asNumeric)
1313
export(ds.assign)
1414
export(ds.boxPlot)
15-
export(ds.boxPlotGG_numeric)
16-
export(ds.boxPlotGG_table)
1715
export(ds.c)
1816
export(ds.cbind)
1917
export(ds.changeRefGroup)

R/ds.boxPlotGG_numeric.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#' @param datasources a list of \code{\link{DSConnection-class}} (default \code{NULL}) objects obtained after login
1010
#'
1111
#' @return \code{ggplot} object
12-
#' @export
1312

1413
ds.boxPlotGG_numeric <- function(x, xlabel = "x axis", ylabel = "y axis", type = "pooled", datasources = NULL){
1514

@@ -21,4 +20,4 @@ ds.boxPlotGG_numeric <- function(x, xlabel = "x axis", ylabel = "y axis", type =
2120

2221
ds.boxPlotGG("boxPlotRawDataNumeric", NULL, NULL, xlabel, ylabel, type, datasources)
2322

24-
}
23+
}

R/ds.boxPlotGG_table.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#' @param datasources a list of \code{\link{DSConnection-class}} (default \code{NULL}) objects obtained after login
1414
#'
1515
#' @return \code{ggplot} object
16-
#' @export
1716

1817
ds.boxPlotGG_table <- function(x, variables, group = NULL, group2 = NULL, xlabel = "x axis",
1918
ylabel = "y axis", type = "pooled", datasources = NULL){
@@ -26,4 +25,4 @@ ds.boxPlotGG_table <- function(x, variables, group = NULL, group2 = NULL, xlabel
2625

2726
ds.boxPlotGG("boxPlotRawData", group, group2, xlabel, ylabel, type, datasources)
2827

29-
}
28+
}

0 commit comments

Comments
 (0)