R/browse_.R

Defines functions browse_

Documented in browse_

#' Title
#'
#' @param .arg
#' @param .if
#' @param .opt
#'
#' @return
#' @export
#'
#' @examples
browse_ <- function(.arg = NULL, .if = NULL, .opt = NULL) {

  if (is.null(.arg) && is.null(.if)) {

    rcode <- "View(dat)"

  } else {

    rcode <- c(limit_data(.arg, .if), "View(temp)")

  }

  return(rcode)

}
shohei-doi/transtataR documentation built on March 22, 2021, 1:52 p.m.