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