R/data_imp_bb.R

Defines functions data_imp_bb

# This function is no longer required
data_imp_bb  <- function(path.name,sheet.name,skip.row,max.row) {
        read.row <- max.row - skip.row
    read.df <- read_excel(path.name, sheet=sheet.name,skip=skip.row,n_max=max.row, col_names=FALSE)
    read.df.clean <- read.df %>% 
		janitor::remove_empty("cols") %>% 
		janitor::remove_empty("rows") 
return(read.df.clean)
}
rfaridi/macrobd documentation built on Jan. 1, 2023, 5:04 a.m.