getCaCnames | R Documentation |
#' @export getDatafringe <- function(fringe, withNames = TRUE) if(!isFringe(fringe)) stop('class is not Fringe') if(withNames) return(fringe$data) else return(fringe$d)
getCaCnames(fringe, n = 4)
#' @export getCnames <- function(fringe) if(isFringe(fringe)) return(fringe$dic_$d$id) if(is.data.frame(fringe)) return(names(fringe))
#' @export getClabels <- function(fringe) if(isFringe(fringe)) return(fringe$dic_$d$label) if(is.data.frame(fringe)) return(names(fringe))
#' @export getCdescriptions <- function(fringe) if(!isFringe(fringe)) stop('class is not Fringe') fringe$dic_$d$cdescription
#' @export gethdtypes <- function(fringe, cols = NULL) if(!isFringe(fringe)) fringe <- fringe(fringe) fringe$dic_$d$ctype
#' @export getCformats <- function(fringe) if(!isFringe(fringe)) fringe <- fringe(fringe) fringe$dic_$d$cformat
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.