-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathasMatrixDS.R
More file actions
20 lines (19 loc) · 860 Bytes
/
asMatrixDS.R
File metadata and controls
20 lines (19 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#' @title Coerces an R object into a matrix
#' @description this function is based on the native R function \code{as.matrix}
#' @details See help for function \code{as.matrix} in native R
#' @param x.name the name of the input object to be coerced to class
#' matrix. Must be specified in inverted commas. But this argument is
#' usually specified directly by <x.name> argument of the clientside function
#' \code{ds.asMatrix}
#' @return the object specified by the <newobj> argument (or its default name
#' <x.name>.mat) which is written to the serverside. For further
#' details see help on the clientside function \code{ds.asMatrix}
#' @author Amadou Gaye, Paul Burton for DataSHIELD Development Team
#' @export
asMatrixDS <- function (x.name){
x <- .loadServersideObject(x.name)
output <- as.matrix(x)
return(output)
}
#ASSIGN FUNCTION
# asMatrixDS