R/glTable.R

Defines functions glTable

Documented in glTable

#' Glimma Table
#'
#' Create a table using the data from a chart.
#'
#' @param target the index of the plot from which data is drawn.
#' @param columns the columns of data to plot.
#'
#' @return a input object containing the input field information.
#'
#' @keywords internal

glTable <- function(target, columns) {
    out <- list()
    out$input <- data.frame(target=target)
    out$columns <- columns
    out$type <- "data.table"
    class(out) <- "jstable"

    return(out)
}
Shians/Glimma documentation built on April 1, 2020, 5:46 a.m.