R/test_functs.R

Defines functions set_rownames set_colnames

set_colnames <- function(x, colnames_in) {
  colnames(x) <- colnames_in
  return(x)
}

set_rownames <- function(x, rownames_in) {
  rownames(x) <- rownames_in
  return(x)
}
timothy-barry/sceptre documentation built on Nov. 24, 2024, 2:25 a.m.