R/utils-fill_blanks.R

# little function to fill in blank rows if not specified
# used in the constuction of header rows
fill_blanks <- function(x, max) {
  c(rep("", max - length(x)), x)
}
ddsjoberg/clintable documentation built on June 9, 2019, 1:51 a.m.