R/nonames.R

Defines functions nonames nonames.default nonames.matrix

nonames <- function(x){
  UseMethod("nonames")
}

nonames.default <- function(x){
  names(x) <- NULL
  attributes(x) <- NULL
  x
}

nonames.array <- nonames.matrix <- function(x){
  dimnames(x) <- NULL
  x
}

Try the RNMImport package in your browser

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

RNMImport documentation built on May 2, 2019, 5:21 p.m.