Commits (2)
......@@ -10,9 +10,8 @@
#'
#'It receives any number of parameters (`...`) that are automatically forwarded
#'to the `startR::Start` function. See details in `?startR::Start`. The
#'auxiliary functions used to define dimensions need to be called within the
#'startR namespace (e.g. startR::indices(), startR::values(), startR::Sort(),
#'startR::CircularSort(), startR::CDORemapper(), ...).
#'auxiliary startR functions (e.g. indices(), values(), Sort(), CircularSort(),
#'CDORemapper(), ...) can be used to define dimensions.
#'
#'@param ... Parameters that are automatically forwarded to the `startR::Start`
#' function. See details in `?startR::Start`.
......@@ -44,7 +43,12 @@
#'@import startR
#'@export
CST_Start <- function(...) {
res <- Start(...)
inputs <- as.list(substitute(list(...)))[-1]
for (i in 1:length(inputs)) {
inputs[[i]] <- eval(inputs[[i]])
}
res <- do.call(Start, inputs)
res <- as.s2dv_cube(res)
return(res)
}
\ No newline at end of file
}
......@@ -22,9 +22,8 @@ multidimensional distributed data sets. Then, the output is transformed into
\details{
It receives any number of parameters (`...`) that are automatically forwarded
to the `startR::Start` function. See details in `?startR::Start`. The
auxiliary functions used to define dimensions need to be called within the
startR namespace (e.g. startR::indices(), startR::values(), startR::Sort(),
startR::CircularSort(), startR::CDORemapper(), ...).
auxiliary startR functions (e.g. indices(), values(), Sort(), CircularSort(),
CDORemapper(), ...) can be used to define dimensions.
}
\examples{
\dontrun{
......
No preview for this file type