R/pseudo.R

Defines functions percent Percent .Format Format Justify Heading

Documented in Format .Format Heading Justify Percent

Heading <- function(name = NULL, override = TRUE, character.only = FALSE,
		    nearData = TRUE) 
    stop("This is a pseudo-function, not meant to be called.")
    
Justify <- function(labels, data=labels)
    stop("This is a pseudo-function, not meant to be called.")

Format <- function(...) 
    stop("This is a pseudo-function, not meant to be called.")

.Format <- function(n) 
    stop("This is a pseudo-function, not meant to be called.")

Percent <- function(denom = "all", fn = percent)
    stop("This is a pseudo-function, not meant to be called.")

percent <- function(x, y) 100*length(x)/length(y)

Arguments <- function (...)
    stop("This is a pseudo-function, not meant to be called.")

DropEmpty <- function (empty = "", which = c("row", "col", "cell"))
    stop("This is a pseudo-function, not meant to be called.")

Try the tables package in your browser

Any scripts or data that you put into this service are public.

tables documentation built on May 3, 2023, 1:15 a.m.