R/charTrans.R

Defines functions charTrans.data.set charTrans.annotation charTrans.value.labels charTrans.item charTrans.importer charTrans.character charTrans

Documented in charTrans charTrans.annotation charTrans.character charTrans.data.set charTrans.importer charTrans.item charTrans.value.labels

charTrans <- function(x, old = "", new = "", ...) UseMethod("charTrans")

charTrans.character <- function(x, old = "", new = "", ...) 
                          chartr(old = old, new = new, x = x)

charTrans.importer <- function(x, old = "", new = "", ...){
  x@.Data <- lapply(x@.Data, charTrans.item, old = old, new = new, ...)
  return(x)
}

charTrans.item <- function(x, old = "", new = "", ...){
  if(length(ann <- annotation(x)))
    annotation(x) <- charTrans.annotation(ann, old = old, new = new, ...)
  if(length(vl <- labels(x)))
    labels(x) <- charTrans.value.labels(vl, old = old, new = new, ...)
  return(x)
}

charTrans.value.labels <- function(x, old = "", new = "", ...){
  x@.Data <- chartr(x = x@.Data, old = old, new = new, ...)
  return(x)
}

charTrans.annotation <- function(x,old="",new="",...){
  x@.Data <- chartr(x = x@.Data, old = old, new = new, ...)
  return(x)
}

charTrans.data.set <- function(x,old="",new="",...){
  x@.Data <- lapply(x@.Data, charTrans.item, old = old, new = new, ...)
  return(x)
}

Try the memisc package in your browser

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

memisc documentation built on Sept. 29, 2024, 1:07 a.m.