Skip to content

Commit d1e7748

Browse files
Merge pull request datashield#530 from datashield/v6.3.1-dev
V6.3.1 dev
2 parents 92e2d59 + 5861ae5 commit d1e7748

194 files changed

Lines changed: 7500 additions & 5949 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.Rbuildignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@
33
^\.Rproj\.user$
44
^LICENSE.md$
55
^azure-pipelines\.yml$
6+
^opal_azure-pipelines\.yml$
7+
^armadillo_azure-pipelines\.yml$
68
^azure-pipelines_site\.pp$
79
^azure-pipelines_site-dsdanger\.pp$
810
^azure-pipelines_check\.Rout$
911
^azure-pipelines_test\.Rout$
12+
^tests/docker/armadillo/standard/log/.gitkeep$
1013
^checkDocumentationUpdated\.sh$
1114
^docker-compose_armadillo\.yml$
1215
^docker-compose_opal\.yml$
1316
^docker-compose\.yml$
1417
^R/secure.global.ranking.md$
1518
^_pkgdown\.yml$
1619
^docs$
17-
^dsBase_6.3.0.tar.gz$
18-
^dsBase_6.3.0-permissive.tar.gz$
20+
^dsBase_6.3.1.tar.gz$
21+
^dsBase_6.3.1-permissive.tar.gz$
1922
^dsDanger_6.3.0.tar.gz$

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
inst/tests/test-template.R
1111
azure-pipelines.Rout
1212
tests/testthat/connection_to_datasets/local_settings.csv
13+
tests/docker/armadillo/standard/logs/
14+
tests/docker/armadillo/standard/data/

DESCRIPTION

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dsBaseClient
22
Title: DataSHIELD Client Functions
3-
Version: 6.3.0
3+
Version: 6.3.1.9000
44
Author: DataSHIELD Developers <datashield@liverpool.ac.uk>
55
Maintainer: DataSHIELD Developers <datashield@liverpool.ac.uk>
66
Description: DataSHIELD client functions for the client side.
@@ -18,5 +18,7 @@ Imports:
1818
panelaggregation,
1919
methods,
2020
dplyr
21-
RoxygenNote: 7.2.3
21+
Suggests:
22+
testthat
23+
RoxygenNote: 7.3.1
2224
Encoding: UTF-8

R/ds.glm.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#'
4747
#' In the \code{family} argument can be specified three types of models to fit:
4848
#'
49-
#' \itemize{
49+
#' \describe{
5050
#' \item{\code{"gaussian"}}{: conventional linear model with normally distributed errors}
5151
#' \item{\code{"binomial"}}{: conventional unconditional logistic regression model}
5252
#' \item{\code{"poisson"}}{: Poisson regression model which is the most used in survival analysis.
@@ -190,7 +190,7 @@
190190
#' @return \code{family}: error family and link function.
191191
#' @return \code{formula}: model formula, see description of formula as an input parameter (above).
192192
#' @return \code{coefficients}: a matrix with 5 columns:
193-
#' \itemize{
193+
#' \describe{
194194
#' \item{First}{: the names of all of the regression parameters (coefficients) in the model}
195195
#' \item{second}{: the estimated values}
196196
#' \item{third}{: corresponding standard errors of the estimated values}

R/ds.glmSLMA.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
#' relatively widely.
9292
#'
9393
#' The standard models include:
94-
#' \itemize{
94+
#' \describe{
9595
#' \item{\code{"gaussian"}}{: conventional linear model with normally distributed errors}
9696
#' \item{\code{"binomial"}}{: conventional unconditional logistic regression model}
9797
#' \item{\code{"poisson"}}{: Poisson regression model which is often used in epidemiological
@@ -199,7 +199,7 @@
199199
#' a series of other list objects that represent inferences aggregated across studies.
200200
#' @return the study specific items include:
201201
#' @return \code{coefficients}: a matrix with 5 columns:
202-
#' \itemize{
202+
#' \describe{
203203
#' \item{First}{: the names of all of the regression parameters (coefficients) in the model}
204204
#' \item{second}{: the estimated values}
205205
#' \item{third}{: corresponding standard errors of the estimated values}

R/ds.glmerSLMA.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#'
4545
#'
4646
#' In the \code{family} argument can be specified two types of models to fit:
47-
#' \itemize{
47+
#' \describe{
4848
#' \item{\code{"binomial"}}{: logistic regression models}
4949
#' \item{\code{"poisson"}}{: poisson regression models}
5050
#' }
@@ -133,7 +133,7 @@
133133
#' The list of elements returned by \code{ds.glmerSLMA} is mentioned below:
134134
#'
135135
#' @return \code{coefficients}: a matrix with 5 columns:
136-
#' \itemize{
136+
#' \describe{
137137
#' \item{First}{: the names of all of the regression parameters (coefficients) in the model}
138138
#' \item{second}{: the estimated values}
139139
#' \item{third}{: corresponding standard errors of the estimated values}

R/ds.heatmapPlot.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
#' minimum and maximum value. This was done to reduce the risk of potential disclosure.
1212
#'
1313
#' In the argument \code{type} can be specified two types of graphics to display:
14-
#' \itemize{
14+
#' \describe{
1515
#' \item{\code{'combine'}}{: a combined heat map plot is displayed}
1616
#' \item{\code{'split'}}{: each heat map is plotted separately}
1717
#' }
1818
#'
1919
#' In the argument \code{show} can be specified two options:
20-
#' \itemize{
20+
#' \describe{
2121
#' \item{\code{'all'}}{: the ranges of the variables are used as plot limits}
2222
#' \item{\code{'zoomed'}}{: the plot is zoomed to the region where the actual data are}
2323
#' }
2424
#'
2525
#' In the argument \code{method} can be specified 3 different heat map to be created:
26-
#' \itemize{
26+
#' \describe{
2727
#' \item{\code{'smallCellsRule'}}{: the heat map of the actual variables is
2828
#' created but grids with low counts are replaced with grids with zero counts}
2929
#' \item{\code{'deterministic'}}{: the heat map of the scaled centroids of each

R/ds.histogram.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
#' the single plots.
77
#'
88
#' In the argument \code{type} can be specified two types of graphics to display:
9-
#' \itemize{
9+
#' \describe{
1010
#' \item{\code{'combine'}}{: a histogram that merges the single plot is displayed.}
1111
#' \item{\code{'split'}}{: each histogram is plotted separately.}
1212
#' }
1313
#'
1414
#' In the argument \code{method} can be specified 3 different histograms to be created:
15-
#' \itemize{
15+
#' \describe{
1616
#' \item{\code{'smallCellsRule'}}{: the histogram of the actual variable is
1717
#' created but bins with low counts are removed.}
1818
#' \item{\code{'deterministic'}}{: the histogram of the scaled centroids of each
@@ -48,7 +48,7 @@
4848
#' By default the value of noise is set to be equal to 0.25.
4949
#'
5050
#' In the argument \code{vertical.axis} can be specified two types of histograms:
51-
#' \itemize{
51+
#' \describe{
5252
#' \item{\code{'Frequency'}}{: the histogram of the frequencies
5353
#' is returned.}
5454
#' \item{\code{'Density'}}{: the histogram of the densities

R/ds.lmerSLMA.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
#' @return \code{ds.lmerSLMA} returns a list of elements mentioned
125125
#' below separately for each study.
126126
#' @return \code{coefficients}: a matrix with 5 columns:
127-
#' \itemize{
127+
#' \describe{
128128
#' \item{First}{: the names of all of the regression parameters (coefficients) in the model}
129129
#' \item{second}{: the estimated values}
130130
#' \item{third}{: corresponding standard errors of the estimated values}

R/ds.names.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#' for example, it only works to extract names that already exist,
77
#' not to create new names for objects. The function is restricted to objects of
88
#' type list, but this includes objects that have a primary class other than list but which
9-
#' return TRUE to the native R function {is.list}. As an example this includes
9+
#' return TRUE to the native R function \code{is.list}. As an example this includes
1010
#' the multi-component object created by fitting a generalized linear model
1111
#' using ds.glmSLMA. The resultant object saved on each server separately
1212
#' is formally of class "glm" and "ls" but responds TRUE to is.list(),

0 commit comments

Comments
 (0)